diff options
author | Marcel Raad <Marcel.Raad@teamviewer.com> | 2019-05-25 10:06:08 +0200 |
---|---|---|
committer | Marcel Raad <Marcel.Raad@teamviewer.com> | 2019-06-05 20:38:06 +0200 |
commit | e23c52b3295a525fbaae9e7ed3e7061fea6dffc2 (patch) | |
tree | 4a74cf5ed3496a6126f1cc7c4284b6620108db06 /tests/libtest/lib569.c | |
parent | 04ac54e1965041684fc1b6532eba90f58601264e (diff) | |
download | curl-e23c52b3295a525fbaae9e7ed3e7061fea6dffc2.tar.gz |
build: fix Codacy warnings
Reduce variable scopes and remove redundant variable stores.
Closes https://github.com/curl/curl/pull/3975
Diffstat (limited to 'tests/libtest/lib569.c')
-rw-r--r-- | tests/libtest/lib569.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/libtest/lib569.c b/tests/libtest/lib569.c index 9c25db45d..3ddc10c4f 100644 --- a/tests/libtest/lib569.c +++ b/tests/libtest/lib569.c @@ -39,9 +39,8 @@ int test(char *URL) char *rtsp_session_id; int request = 1; int i; - FILE *idfile = NULL; - idfile = fopen(libtest_arg2, "wb"); + FILE *idfile = fopen(libtest_arg2, "wb"); if(idfile == NULL) { fprintf(stderr, "couldn't open the Session ID File\n"); return TEST_ERR_MAJOR_BAD; |