diff options
author | Alexander Larsson <alexl@redhat.com> | 2016-05-20 10:59:59 +0200 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2016-05-20 11:48:02 +0000 |
commit | 86ac8062f5311fe94ef4096f4e136ce993d5e9b2 (patch) | |
tree | f4a84285932b502be1953662825c54b97d3832ec /tests | |
parent | 506902f8a0e750008240541dae22562598eaa445 (diff) | |
download | ostree-86ac8062f5311fe94ef4096f4e136ce993d5e9b2.tar.gz |
tests: Fix build with old glib
test-checksum.c was using g_autofree without including libglnx.h which
has the backport for that.
Closes: #304
Approved by: cgwalters
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-checksum.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-checksum.c b/tests/test-checksum.c index 25d3c37e..e7fd7be4 100644 --- a/tests/test-checksum.c +++ b/tests/test-checksum.c @@ -20,6 +20,7 @@ #include "config.h" +#include "libglnx.h" #include "libgsystem.h" #include <glib.h> #include <stdlib.h> |