]> git.proxmox.com Git - qemu.git/blobdiff - check-qdict.c
Correct spelling of licensed
[qemu.git] / check-qdict.c
index 6afce5a5ca2fa6111939b91fa82242c0539e6dc5..ecc7fd7b902b83e8cc753c2372646de4a432a7cc 100644 (file)
@@ -267,8 +267,9 @@ static QString *read_line(FILE *file, char *key)
 {
     char value[128];
 
-    if (fscanf(file, "%s%s", key, value) == EOF)
+    if (fscanf(file, "%127s%127s", key, value) == EOF) {
         return NULL;
+    }
     remove_dots(key);
     return qstring_from_str(value);
 }