trimmer: use g_match_info_free instead of g_match_info_unref
authorSimon Marchi <simon.marchi@efficios.com>
Thu, 4 Jul 2019 20:31:00 +0000 (16:31 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 5 Jul 2019 17:12:50 +0000 (13:12 -0400)
commita42eab880dd283b11e48b33cbcf4d57491afeb39
tree4be98a0bcdeab7992416c1b89957a8a49c129f54
parent5968a1ad29f571b0422e79c3ca28ba922fabe392
trimmer: use g_match_info_free instead of g_match_info_unref

The build fails with glib 2.22:

    trimmer.c: In function ‘compile_and_match’:
    trimmer.c:201:3: error: implicit declaration of function ‘g_match_info_unref’; did you mean ‘g_match_info_free’? [-Werror=implicit-function-declaration]
       g_match_info_unref(*match_info);
       ^~~~~~~~~~~~~~~~~~
       g_match_info_free

The g_match_info_unref function is only available from glib 2.30.  Use
g_match_info_free instead, which does the same for our use case.

Change-Id: I9357b9dd18501749e19481e9ef08ec9b01379ee6
Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Reviewed-on: https://review.lttng.org/c/babeltrace/+/1633
Tested-by: jenkins <jenkins@lttng.org>
Reviewed-by: Philippe Proulx <eeppeliteloop@gmail.com>
src/plugins/utils/trimmer/trimmer.c
This page took 0.025828 seconds and 4 git commands to generate.