[PATCH] Warn on writable strings
[fio.git] / parse.h
diff --git a/parse.h b/parse.h
index 563712eede06dca557bfbdcbaae8ecbb73123dfe..adbb3208e644c7bcac22ed96c58206553f9e1d42 100644 (file)
--- a/parse.h
+++ b/parse.h
@@ -19,10 +19,12 @@ enum fio_opt_type {
  * Option define
  */
 struct fio_option {
-       char *name;
+       const char *name;
        enum fio_opt_type type;
        unsigned int off1;
        unsigned int off2;
+       unsigned int off3;
+       unsigned int off4;
        unsigned int max_val;
        void *cb;
 };