diff options
author | Guy Harris <guy@alum.mit.edu> | 2014-06-21 18:54:53 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2014-06-22 01:55:41 +0000 |
commit | 376dfe847b4f0b5dcea277fb0c570df5b793be79 (patch) | |
tree | b4e8d114c8706e724e5fa68bf382078788e09735 /echld_test.c | |
parent | 7ba4aef599b9a36c8eb6dfd991fe37ab98319fed (diff) | |
download | wireshark-376dfe847b4f0b5dcea277fb0c570df5b793be79.tar.gz wireshark-376dfe847b4f0b5dcea277fb0c570df5b793be79.tar.bz2 wireshark-376dfe847b4f0b5dcea277fb0c570df5b793be79.zip |
Fix build errors for tfshark and echld.
Some come from the recent version information changes, some were broken
before that.
Change-Id: I9429f7d45d3c51c579aef592b37c79130a443299
Reviewed-on: https://code.wireshark.org/review/2531
Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'echld_test.c')
-rw-r--r-- | echld_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/echld_test.c b/echld_test.c index 9e217f0fef..0cc30b38ab 100644 --- a/echld_test.c +++ b/echld_test.c @@ -134,7 +134,7 @@ static char* new_child_cmd(char** params, char** err) { return NULL; } - child = echld_new(paramsets[ps_id],NULL); + child = echld_new(paramsets[ps_id],NULL,NULL); if (child <= 0) { *err = g_strdup("No child\n"); @@ -377,7 +377,7 @@ int got_param = 0; int main(int argc _U_, char** argv _U_) { struct timeval tv; int tot_cycles = 0; - echld_init_t init = {ECHLD_ENCODING_JSON,argv[0],main,NULL,NULL,NULL,NULL}; + echld_init_t init = {ECHLD_ENCODING_JSON,argv[0],main,NULL,NULL,NULL,NULL,NULL,NULL}; tv.tv_sec = 5; |