summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Ovsienko <infrastation@yandex.ru>2012-09-10 21:29:20 +0400
committerDenis Ovsienko <infrastation@yandex.ru>2012-09-10 21:29:20 +0400
commit81bdbfeeeb1e10ca2c558daf60a582b6e29631c8 (patch)
tree5693fda493672f90201f1f90ae2189e56719b1ae
parent7cd7ddbc9ab8b3796ec6f2622c263fcf319b7fc5 (diff)
downloadtcpdump-81bdbfeeeb1e10ca2c558daf60a582b6e29631c8.tar.gz
add missing double quote to fix compiling
-rw-r--r--tcpdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcpdump.c b/tcpdump.c
index 98ec2d5d..c271dd95 100644
--- a/tcpdump.c
+++ b/tcpdump.c
@@ -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) {