aboutsummaryrefslogtreecommitdiffstats
path: root/echld_test.c
diff options
context:
space:
mode:
authorJoerg Mayer <jmayer@loplof.de>2015-05-17 22:59:12 +0200
committerJörg Mayer <jmayer@loplof.de>2015-05-17 21:01:03 +0000
commit1c455284f0f6166beb4212614d4f1e2a177c7ebe (patch)
treecbfac0f75a321a3d84a03b5d10a0bf5338c05b0c /echld_test.c
parent36af2c61e8dcdd692faf1fb9a9ed62c0dc4cd8ba (diff)
Fix some files to pass the pre-commit hook script.
Change-Id: I105bf4e03fcf95cf7541f6377215809759fd933e Reviewed-on: https://code.wireshark.org/review/8502 Reviewed-by: Jörg Mayer <jmayer@loplof.de>
Diffstat (limited to 'echld_test.c')
-rw-r--r--echld_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/echld_test.c b/echld_test.c
index 0c6cc7a033..b2d192edf3 100644
--- a/echld_test.c
+++ b/echld_test.c
@@ -360,7 +360,7 @@ static int invoke_cmd(FILE* in_fp) {
}
static char* run_cmd(char** pars, char** err _U_) {
- FILE* fp = fopen(pars[1],"r");
+ FILE* fp = ws_stdio_fopen(pars[1],"r");
while(invoke_cmd(fp)) { ; }
fclose(fp);
return NULL;