From 1931e28e4e7ce9b4e4a6ccedfc7dbc0b535d0f45 Mon Sep 17 00:00:00 2001 From: Sam Elliott Date: Tue, 6 Jun 2017 14:46:51 -0700 Subject: [PATCH] Add Checked Scope to ft.c main --- MultiSource/Benchmarks/Ptrdist/ft/ft.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MultiSource/Benchmarks/Ptrdist/ft/ft.c b/MultiSource/Benchmarks/Ptrdist/ft/ft.c index f99bb68fd..6092a7f0e 100644 --- a/MultiSource/Benchmarks/Ptrdist/ft/ft.c +++ b/MultiSource/Benchmarks/Ptrdist/ft/ft.c @@ -69,7 +69,7 @@ int debug = 1; _Unchecked int main(int argc, _Array_ptr argv : count(argc) ) -{ +_Checked { int nVertex; int nEdge; _Ptr graph = 0; @@ -78,7 +78,7 @@ main(int argc, _Array_ptr argv : count(argc) ) nEdge = DEFAULT_N_EDGE; if(argc > 1) - { + _Unchecked { nVertex = atoi(argv[1]); if(argc > 2) {