diff options
-rw-r--r-- | name.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ main(int argc, char *argv[]) /* Allocate memory. */ for(i = 0; i < MAXFILES; i++) - if(!(froms[i]=malloc(MAXFILE)) || !(tos[i]=malloc(MAXFILE))) + if(!(froms[i] = malloc(MAXFILE)) || !(tos[i] = malloc(MAXFILE))) err(1, "malloc"); if(!(tmp = malloc(MAXLINE*4))) err(1, "malloc"); |