diff options
Diffstat (limited to 'src/testcurl/test_get_response_cleanup.c')
-rw-r--r-- | src/testcurl/test_get_response_cleanup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testcurl/test_get_response_cleanup.c b/src/testcurl/test_get_response_cleanup.c index db6ba54f..0bb154c8 100644 --- a/src/testcurl/test_get_response_cleanup.c +++ b/src/testcurl/test_get_response_cleanup.c | |||
@@ -109,10 +109,10 @@ push_callback (void *cls, uint64_t pos, char *buf, size_t max) | |||
109 | static void | 109 | static void |
110 | push_free_callback (void *cls) | 110 | push_free_callback (void *cls) |
111 | { | 111 | { |
112 | int *ok = cls; | 112 | int *ok_p = cls; |
113 | 113 | ||
114 | // fprintf (stderr, "Cleanup callback called!\n"); | 114 | // fprintf (stderr, "Cleanup callback called!\n"); |
115 | *ok = 0; | 115 | *ok_p = 0; |
116 | } | 116 | } |
117 | 117 | ||
118 | 118 | ||