From e851945e935869381a4ad09538cfde6c6a2b2ca0 Mon Sep 17 00:00:00 2001 From: justanotheranonymoususer Date: Wed, 20 Jun 2018 22:44:48 +0300 Subject: Update testapp.c (#232) --- general/ioctl/wdm/exe/testapp.c | 8 ++++---- 1 file 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; } -- cgit v1.3.1