File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ void Debugger::dump(Module *m, bool full) const {
305
305
}
306
306
307
307
dprintf (this ->socket , " }\n\n " );
308
- // fflush(stdout);
308
+ // fflush(stdout);
309
309
}
310
310
311
311
void Debugger::dumpBreakpoints (Module *m) const {
@@ -350,7 +350,7 @@ void Debugger::dumpCallstack(Module *m) const {
350
350
}
351
351
352
352
void Debugger::dumpLocals (Module *m) const {
353
- // fflush(stdout);
353
+ // fflush(stdout);
354
354
int firstFunFramePtr = m->csp ;
355
355
while (m->callstack [firstFunFramePtr].block ->block_type != 0 ) {
356
356
firstFunFramePtr--;
@@ -360,7 +360,7 @@ void Debugger::dumpLocals(Module *m) const {
360
360
}
361
361
Frame *f = &m->callstack [firstFunFramePtr];
362
362
dprintf (this ->socket , R"( {"count":%u,"locals":[)" , 0 );
363
- // fflush(stdout); // FIXME: this is needed for ESP to propery print
363
+ // fflush(stdout); // FIXME: this is needed for ESP to propery print
364
364
char _value_str[256 ];
365
365
for (size_t i = 0 ; i < f->block ->local_count ; i++) {
366
366
auto v = &m->stack [m->fp + i];
@@ -392,7 +392,7 @@ void Debugger::dumpLocals(Module *m) const {
392
392
(i + 1 < f->block ->local_count ) ? " ," : " " );
393
393
}
394
394
dprintf (this ->socket , " ]}" );
395
- // fflush(stdout);
395
+ // fflush(stdout);
396
396
}
397
397
398
398
/* *
You can’t perform that action at this time.
0 commit comments