diff options
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/libdvdnav/remap.c | 2 | ||||
-rw-r--r-- | src/input/net_buf_ctrl.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/input/libdvdnav/remap.c b/src/input/libdvdnav/remap.c index df0be29ce..42bb8b3dd 100644 --- a/src/input/libdvdnav/remap.c +++ b/src/input/libdvdnav/remap.c @@ -216,7 +216,7 @@ remap_t* remap_loadmap( char *title) { remap_add_node( map, tmp); } } - close (fp); /* ignoring errors... */ + fclose (fp); /* ignoring errors... */ if (map->nblocks == 0 && map->debug == 0) return NULL; return map; diff --git a/src/input/net_buf_ctrl.c b/src/input/net_buf_ctrl.c index e14897699..b7a52eb2b 100644 --- a/src/input/net_buf_ctrl.c +++ b/src/input/net_buf_ctrl.c @@ -117,9 +117,8 @@ static void display_stats (nbc_t *this) { static const char buffering[2][4] = {" ", "buf"}; static const char enabled[2][4] = {"off", "on "}; - printf("bufing: %d, enb: %d\n", this->buffering, this->enabled); printf("net_buf_ctrl: vid %3d%% %4.1fs %4" PRId64 "kbps %1d, "\ - "aud %3d%% %4.1fs %4" PRId64 "kbps %1d, %s %s\r", + "aud %3d%% %4.1fs %4" PRId64 "kbps %1d, %s %s%c", this->video_fifo_fill, (float)(this->video_fifo_length / 1000), this->video_br / 1000, @@ -129,7 +128,8 @@ static void display_stats (nbc_t *this) { this->audio_br / 1000, this->audio_in_disc, buffering[this->buffering], - enabled[this->enabled] + enabled[this->enabled], + isatty (stdout) ? '\r' : '\n' ); fflush(stdout); } |