We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5c241c commit d979943Copy full SHA for d979943
cffi/source.c
@@ -6,6 +6,6 @@
6
#include <libyang/libyang.h>
7
#include <libyang/version.h>
8
9
-#if (LY_MAJOR_VERSION * 10000 + LY_MINOR_VERSION * 100 + LIBYANG_MICRO_VERSION) < 30901
10
-#error "This version of libyang bindings only works with libyang soversion 3.9.1+"
+#if (LY_MAJOR_VERSION * 10000) + (LY_MINOR_VERSION * 100) + (LIBYANG_MICRO_VERSION) < 30901
+#error "This version of libyang bindings only works with libyang 3.9.1+"
11
#endif
0 commit comments