From 5ab7044678cf35dff14c06d9031a2791fd563fec Mon Sep 17 00:00:00 2001 From: Vladimir Nadvornik Date: Tue, 7 Aug 2012 10:21:29 +0200 Subject: [PATCH] replaced assert with g_assert --- src/exif-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exif-common.c b/src/exif-common.c index 14799093..7ed2a547 100644 --- a/src/exif-common.c +++ b/src/exif-common.c @@ -639,7 +639,7 @@ void exif_release_cb(FileData *fd) void exif_init_cache(void) { - assert(!exif_cache); + g_assert(!exif_cache); exif_cache = file_cache_new(exif_release_cb, 4); } -- 2.20.1