From afb9568444ef9ae6316d279162f71b8160cb48fa Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Tue, 2 Mar 2021 12:25:51 +0100 Subject: [PATCH] build: add a space between arguments of AC_INIT() in configure.ac Make the AC_INIT() expansion consistent with other macros. Signed-off-by: Bartosz Golaszewski --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 70896ce..e0a917f 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.69]) -AC_INIT([libgpiod],[2.0]) +AC_INIT([libgpiod], [2.0]) AC_SUBST(EXTRA_VERSION, [-devel]) AC_DEFINE_UNQUOTED([GPIOD_VERSION_STR], -- 2.30.2