]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdExit.cxx
#3249 BBTKBug New Normal - box Exit package std killing application in windows...
[bbtk.git] / packages / std / src / bbstdExit.cxx
index 1ad9f116c1297cd432ba1976f219134833bfedb3..896c16ab480dfcb54160d39ad49e9cf7c2f35bfc 100644 (file)
@@ -32,7 +32,7 @@ void Exit::Process()
   
   int pid=getpid();
   char tmp[256];
-  sprintf(tmp,"taskkill /pid %d /T", pid);
+  sprintf(tmp,"taskkill /pid %d /F", pid);
   system(tmp);
 //     exit( bbGetInputIn() );
 }