]> Git Repo - linux.git/blobdiff - scripts/kconfig/confdata.c
kconfig: Fix warning: ignoring return value of 'fwrite'
[linux.git] / scripts / kconfig / confdata.c
index ac13f0ff8e811e521e884a3811fdddd090fe64a7..c39327e60ea499919937fae08a8d5bc5dc9c4fd9 100644 (file)
@@ -412,7 +412,7 @@ static void conf_write_string(bool headerfile, const char *name,
        while (1) {
                l = strcspn(str, "\"\\");
                if (l) {
-                       fwrite(str, l, 1, out);
+                       xfwrite(str, l, 1, out);
                        str += l;
                }
                if (!*str)
This page took 0.03423 seconds and 4 git commands to generate.