summaryrefslogtreecommitdiff
path: root/misc/buildroot/toolchain/nxflat/mknxflat.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/buildroot/toolchain/nxflat/mknxflat.c')
-rw-r--r--misc/buildroot/toolchain/nxflat/mknxflat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/buildroot/toolchain/nxflat/mknxflat.c b/misc/buildroot/toolchain/nxflat/mknxflat.c
index 5387d385b..7a66280bb 100644
--- a/misc/buildroot/toolchain/nxflat/mknxflat.c
+++ b/misc/buildroot/toolchain/nxflat/mknxflat.c
@@ -517,7 +517,7 @@ static int get_file_token(FILE * in_stream)
if (c == EOF)
return EOF;
- /* Add the token to the buffer. Copy characters until the buffer is full, or
+ /* Add the token to the buffer. Copy characters until the buffer is full, or
* a terminator is encountered. */
for (i = 0; ((i < 1023) && !ISTERMINATOR(c)); i++, c = getc(in_stream))