Skip to content

Commit d875160

Browse files
committed
refactor N
1 parent cd0c507 commit d875160

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MIDAS/src/hilsim/stream/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,14 +305,14 @@ int main(int argc, char** argv) {
305305
}
306306
break;
307307
case 'N':
308-
// debug: NEXT <n> gets n lines
308+
// NEXT <n> skips n lines
309309
int n;
310310
sscanf(_inbuf + 1, " %i", &n);
311311

312312
if (inptr) {
313313
for(int a = 0; a < n; a++) {
314314
if(read_entry(entry)) {
315-
printf("DEBUG ENTRY [%u]: (%u) <size: %uB> (CRC 0x%x)\n", entry.ts, entry.disc, entry._data_size, entry.crc);
315+
// printf("DEBUG ENTRY [%u]: (%u) <size: %uB> (CRC 0x%x)\n", entry.ts, entry.disc, entry._data_size, entry.crc);
316316
}
317317
}
318318
} else {

0 commit comments

Comments
 (0)