From dbfd9122583baea644fc727466ce30a6b5fd2706 Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Sun, 15 Jul 2012 14:56:57 +0200 Subject: [PATCH] journal: avoid re-definition of enums for older gcc versions On Sun, Jul 15, 2012 at 2:00 PM, Koen Kooi wrote: > | In file included from src/journal/sd-journal.c:37:0: > | src/journal/journal-internal.h:47:3: error: redefinition of typedef 'MatchType' > | src/journal/journal-internal.h:36:24: note: previous declaration of 'MatchType' was here > | src/journal/journal-internal.h:67:3: error: redefinition of typedef 'LocationType' > | src/journal/journal-internal.h:37:27: note: previous declaration of 'LocationType' was here --- src/journal/journal-internal.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/journal/journal-internal.h b/src/journal/journal-internal.h index 482ef61b9..64d05f0e1 100644 --- a/src/journal/journal-internal.h +++ b/src/journal/journal-internal.h @@ -33,9 +33,6 @@ #include "hashmap.h" #include "journal-file.h" -typedef enum MatchType MatchType; -typedef enum LocationType LocationType; - typedef struct Match Match; typedef struct Location Location; typedef struct Directory Directory; -- 2.30.2