30 lines
864 B
Diff
30 lines
864 B
Diff
From 0a3755c1799d3a4dc1875d4c59c7c568a64c8456 Mon Sep 17 00:00:00 2001
|
|
From: Thomas Haller <thaller@redhat.com>
|
|
Date: Tue, 31 Jul 2018 14:13:57 +0200
|
|
Subject: [PATCH] version: fix compile error due to NM_AVAILABLE_IN_1_12_2
|
|
macro
|
|
|
|
Fixes: 8d09660481e1ff8b513aa60b2c40a4982ccc57cd
|
|
|
|
https://mail.gnome.org/archives/networkmanager-list/2018-July/msg00023.html
|
|
---
|
|
libnm-core/nm-version.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/libnm-core/nm-version.h b/libnm-core/nm-version.h
|
|
index ee6dbc0bd..c24048955 100644
|
|
--- a/libnm-core/nm-version.h
|
|
+++ b/libnm-core/nm-version.h
|
|
@@ -161,7 +161,7 @@
|
|
#endif
|
|
|
|
#if NM_VERSION_MAX_ALLOWED < NM_VERSION_1_12_2
|
|
-# define NM_AVAILABLE_IN_1_12_2 G_UNAVAILABLE(1,12,2)
|
|
+# define NM_AVAILABLE_IN_1_12_2 G_UNAVAILABLE(1,12.2)
|
|
#else
|
|
# define NM_AVAILABLE_IN_1_12_2
|
|
#endif
|
|
--
|
|
2.17.1
|
|
|