summaryrefslogtreecommitdiff
path: root/libnm
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2020-12-22 00:24:54 +0100
committerThomas Haller <thaller@redhat.com>2020-12-22 16:33:27 +0100
commit90704dafae02222cdb80d0e83e6ffc29348174a5 (patch)
tree1e2b8a4547ea05bf431e4954c5a2fa8c70bb0490 /libnm
parent871c34d94eb655e29ca0620f0217531334723d31 (diff)
downloadNetworkManager-90704dafae02222cdb80d0e83e6ffc29348174a5.tar.gz
libnm: include "nm-core-enum-types.h" in libnm headers with quotes
In C, includes with <> are for system headers, while "" prefers the current working directory (implementation defined). For libnm headers that include other libnm headers, we tend to use "" instead of <>. That makes sense to me. Be consistent about that.
Diffstat (limited to 'libnm')
-rw-r--r--libnm/nm-enum-types.h.template2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnm/nm-enum-types.h.template b/libnm/nm-enum-types.h.template
index bd9ce40b25..3bd86cce00 100644
--- a/libnm/nm-enum-types.h.template
+++ b/libnm/nm-enum-types.h.template
@@ -2,7 +2,7 @@
#ifndef __NM_ENUM_TYPES_H__
#define __NM_ENUM_TYPES_H__
-#include <nm-core-enum-types.h>
+#include "nm-core-enum-types.h"
#include <glib-object.h>
G_BEGIN_DECLS