Skip to content

Commit

Permalink
Update testapp.c (microsoft#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
justanotheranonymoususer authored and wm1 committed Jun 20, 2018
1 parent bf3ce6a commit e851945
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions general/ioctl/wdm/exe/testapp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 ;
}
Expand All @@ -89,7 +89,7 @@ main(
DRIVER_FUNC_INSTALL
)) {

printf("Unable to install driver. \n");
printf("Unable to install driver.\n");

//
// Error - remove driver.
Expand Down Expand Up @@ -207,7 +207,7 @@ main(

if ( !bRc )
{
printf ( "Error in DeviceIoControl : : %d", GetLastError());
printf ( "Error in DeviceIoControl : %d", GetLastError());
return;
}

Expand All @@ -234,7 +234,7 @@ main(

if ( !bRc )
{
printf ( "Error in DeviceIoControl : : %d", GetLastError());
printf ( "Error in DeviceIoControl : %d", GetLastError());
return;
}

Expand Down

0 comments on commit e851945

Please sign in to comment.