[PATCH] Get _syscallX() functions from <linux/unistd.h>
[fio.git] / init.c
diff --git a/init.c b/init.c
index 2df509b24630b05c421c5152709701dfa41bcac9..ced9d859aa853ddf9fb04c2a6395aa418e5f166d 100644 (file)
--- a/init.c
+++ b/init.c
@@ -1033,18 +1033,12 @@ static int parse_cmd_line(int argc, char *argv[])
 {
        int c, idx = 1, ini_idx = 0;
 
-       while ((c = getopt(argc, argv, "t:o:f:lwvhm")) != EOF) {
+       while ((c = getopt(argc, argv, "t:o:lwvhm")) != EOF) {
                switch (c) {
                        case 't':
                                def_timeout = atoi(optarg);
                                idx++;
                                break;
-                       case 'f':
-                               ini_idx++;
-                               ini_file = realloc(ini_file, ini_idx * sizeof(char *));
-                               ini_file[ini_idx - 1] = strdup(optarg);
-                               idx++;
-                               break;
                        case 'l':
                                write_lat_log = 1;
                                idx++;