summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjustanotheranonymoususer <[email protected]>2018-06-20 22:44:48 +0300
committerWei Mao <[email protected]>2018-06-20 12:44:48 -0700
commite851945e935869381a4ad09538cfde6c6a2b2ca0 (patch)
tree1b1901f35cc0a74f87bdb30b333da7a4996eb9d4
parentbf3ce6a606412fcdafa3e63e86a0b0902f5d3bdd (diff)
Update testapp.c (#232)
-rw-r--r--general/ioctl/wdm/exe/testapp.c8
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;
}