diff options
| -rw-r--r-- | general/ioctl/wdm/exe/testapp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/general/ioctl/wdm/exe/testapp.c b/general/ioctl/wdm/exe/testapp.c index 7a4e6abd..507fc4f0 100644 --- a/general/ioctl/wdm/exe/testapp.c +++ b/general/ioctl/wdm/exe/testapp.c @@ -69,7 +69,7 @@ main( if (errNum != ERROR_FILE_NOT_FOUND) { - printf("CreateFile failed! ERROR_FILE_NOT_FOUND = %d\n", errNum); + printf("CreateFile failed : %d\n", errNum); return ; } @@ -89,7 +89,7 @@ main( DRIVER_FUNC_INSTALL )) { - printf("Unable to install driver. \n"); + printf("Unable to install driver.\n"); // // Error - remove driver. @@ -207,7 +207,7 @@ main( if ( !bRc ) { - printf ( "Error in DeviceIoControl : : %d", GetLastError()); + printf ( "Error in DeviceIoControl : %d", GetLastError()); return; } @@ -234,7 +234,7 @@ main( if ( !bRc ) { - printf ( "Error in DeviceIoControl : : %d", GetLastError()); + printf ( "Error in DeviceIoControl : %d", GetLastError()); return; } |
