sdlog2: Remove an unreachable comparison

This commit is contained in:
Lorenz Meier 2014-05-13 10:53:54 +02:00
parent c04064fd6a
commit c9162f428a
1 changed files with 1 additions and 1 deletions

View File

@ -684,7 +684,7 @@ int sdlog2_thread_main(int argc, char *argv[])
case 'r': {
unsigned long r = strtoul(optarg, NULL, 10);
if (r <= 0) {
if (r == 0) {
r = 1;
}