diff options
Diffstat (limited to 'include/command.h')
| -rw-r--r-- | include/command.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/command.h b/include/command.h index f44c103..2948aca 100644 --- a/include/command.h +++ b/include/command.h @@ -11,16 +11,16 @@ #include "config.h" typedef struct command { - char *command; - char *infile; - char *outfile; + const char *command; + const char *infile; + const char *outfile; struct command *next; struct command *prev; pid_t pid; int pipe[2]; - char *args[MAX_ARGUMENT_CNT + 2]; + const char *args[MAX_ARGUMENT_CNT + 2]; } command; |