Skip to content

Commit d979943

Browse files
committed
fix
1 parent e5c241c commit d979943

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cffi/source.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
#include <libyang/libyang.h>
77
#include <libyang/version.h>
88

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+"
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 3.9.1+"
1111
#endif

0 commit comments

Comments
 (0)