diff options
author | Denis Ovsienko <infrastation@yandex.ru> | 2012-09-10 21:29:20 +0400 |
---|---|---|
committer | Denis Ovsienko <infrastation@yandex.ru> | 2012-09-10 21:29:20 +0400 |
commit | 81bdbfeeeb1e10ca2c558daf60a582b6e29631c8 (patch) | |
tree | 5693fda493672f90201f1f90ae2189e56719b1ae | |
parent | 7cd7ddbc9ab8b3796ec6f2622c263fcf319b7fc5 (diff) | |
download | tcpdump-81bdbfeeeb1e10ca2c558daf60a582b6e29631c8.tar.gz |
add missing double quote to fix compiling
-rw-r--r-- | tcpdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -590,7 +590,7 @@ MakeFilename(char *buffer, char *orig_name, int cnt, int max_chars) { char *filename = malloc(NAME_MAX + 1); if (filename == NULL) - error("Makefilename: malloc); + error("Makefilename: malloc"); /* Process with strftime if Gflag is set. */ if (Gflag != 0) { |