summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavutil/avstring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/avstring.c b/libavutil/avstring.c
index b184442306..24d1bb98e9 100644
--- a/libavutil/avstring.c
+++ b/libavutil/avstring.c
@@ -502,7 +502,7 @@ int main(void)
printf("Testing av_append_path_component()\n");
#define TEST_APPEND_PATH_COMPONENT(path, component, expected) \
fullpath = av_append_path_component((path), (component)); \
- printf("%s = %s\n", fullpath, expected); \
+ printf("%s = %s\n", fullpath ? fullpath : "(null)", expected); \
av_free(fullpath);
TEST_APPEND_PATH_COMPONENT(NULL, NULL, "(null)")
TEST_APPEND_PATH_COMPONENT("path", NULL, "path");