diff --git a/src/files.c b/src/files.c
index 7c3321f109e152e06e1a1a2540bed9be167be262..a01ed0af09a99f8cbc783b22fa0feed33cf6ab2c 100644
--- a/src/files.c
+++ b/src/files.c
@@ -129,8 +129,8 @@ void read_file(FILE *f, const char *filename)
 {
     size_t num_lines = 0;
 	/* The number of lines in the file. */
-    size_t num_chars = 0;
-	/* The number of bytes in the file. */
+    size_t num_chars;
+	/* The number of characters in the file. */
     size_t len = 0;
 	/* The length of the current line of the file. */
     size_t i = 0;