Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
philshafer committed Nov 5, 2019
2 parents 56ee830 + d5330b1 commit b99480a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#

AC_PREREQ(2.2)
AC_INIT([libxo], [1.2.0], [phil@juniper.net])
AC_INIT([libxo], [1.3.0], [phil@juniper.net])
AM_INIT_AUTOMAKE([-Wall -Werror foreign -Wno-portability])

# Support silent build rules. Requires at least automake-1.11.
Expand Down
2 changes: 1 addition & 1 deletion libxo/libxo.c
Original file line number Diff line number Diff line change
Expand Up @@ -8107,7 +8107,7 @@ xo_parse_args (int argc, char **argv)

/* GNU tools add an annoying ".test" as the program extension; remove it */
size_t len = strlen(xo_program);
const static char gnu_ext[] = ".test";
static const char gnu_ext[] = ".test";
if (len >= sizeof(gnu_ext)) {
cp = &cp[len + 1 - sizeof(gnu_ext)];
if (xo_streq(cp, gnu_ext))
Expand Down

0 comments on commit b99480a

Please sign in to comment.