Skip to content

Commit

Permalink
Fix a couple compile bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
bonsaiviking committed Mar 5, 2018
1 parent 50050de commit 3b31ffd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packetWin7/NPFInstall/NPFInstall/LoopbackInstall.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,7 @@ Return Value:
pControlContext->count++;
}
_tprintf(TEXT("%-60s: %s\n"),devID,action);
TRACE_PRINT2("RemoveCallback: devID=%s, action=%s\n");
TRACE_PRINT2("RemoveCallback: devID=%s, action=%s\n",devID,action);

return EXIT_OK;
}
Expand Down Expand Up @@ -1429,7 +1429,7 @@ Return Value:

if (failcode == EXIT_OK)
{
TRACE_PRINT("cmdRemove: %d devices removed", context.count);
TRACE_PRINT1("cmdRemove: %d devices removed", context.count);
if (!context.count)
{
FormatToStream(stdout, MSG_REMOVE_TAIL_NONE);
Expand Down

0 comments on commit 3b31ffd

Please sign in to comment.