Skip to content

Commit

Permalink
set approrpiate reporting level for error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamLaurie committed Dec 7, 2009
1 parent b223ec5 commit 112b4c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/drivers/acr122.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ acr122_pick_device (void)
size_t szN;

if (!acr122_list_devices (pndd, 1, &szN)) {
ERR("%s", "acr122_list_devices failed");
DBG("%s", "acr122_list_devices failed");
return NULL;
}

if (szN == 0) {
ERR("%s", "No device found");
DBG("%s", "No device found");
return NULL;
}
}
Expand Down

0 comments on commit 112b4c4

Please sign in to comment.