From 8f710a4103607c3568b31bc9b1002aafc6954489 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Tue, 22 Apr 2014 16:58:09 -0300 Subject: Fix clint.sh wrapper script and broken files - Fixed clint.sh, it no longer ignores errors in individual files. - Fixed two files that weren't passing the clint test --- src/os/input.h | 2 +- src/os/rstream.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/os/input.h b/src/os/input.h index 0d58a33392..9ffd50fd3f 100644 --- a/src/os/input.h +++ b/src/os/input.h @@ -14,7 +14,7 @@ bool os_char_avail(void); void os_breakcheck(void); /// Test whether a file descriptor refers to a terminal. -/// +/// /// @param fd File descriptor. /// @return `true` if file descriptor refers to a terminal. bool os_isatty(int fd); diff --git a/src/os/rstream.c b/src/os/rstream.c index 519a6466ef..59cab457fa 100644 --- a/src/os/rstream.c +++ b/src/os/rstream.c @@ -235,7 +235,7 @@ static void fread_idle_cb(uv_idle_t *handle) // the offset argument to uv_fs_read is int64_t, could someone really try // to read more than 9 quintillion (9e18) bytes? // DISABLED TO FIX BROKEN BUILD ON 32bit - // TODO Review types to allow assertion + // TODO(elmart): Review types to allow assertion // assert(rstream->fpos <= INT64_MAX); // Synchronous read -- cgit