Change union value type to contain uint8_t types instead of char.
[pspp-builds.git] / src / language / dictionary / missing-values.c
index aa3ce698206ba652cef8a299c6f6926095329881..819b0a9021cfe5821b4060e02b9932830b2a6120 100644 (file)
@@ -101,7 +101,7 @@ cmd_missing_values (struct lexer *lexer, struct dataset *ds)
               mv_init (&mv, MV_MAX_STRING);
               while (!lex_match (lexer, ')'))
                 {
-                  char value[MV_MAX_STRING];
+                  uint8_t value[MV_MAX_STRING];
                   size_t length;
 
                   if (!lex_force_string (lexer))