Skip to content

Commit

Permalink
github action: Fix CC test
Browse files Browse the repository at this point in the history
  • Loading branch information
mkj committed Aug 23, 2024
1 parent 54b2379 commit ac578da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:

- name: configure
run: |
$(CC) --version || echo unknown $(CC) version
$CC --version || echo unknown $CC version
./configure $CONFIGURE_FLAGS CFLAGS="-O2 -Wall -Wno-pointer-sign $EXTRACFLAGS" --prefix="$HOME/inst" || (cat config.log; exit 1)
- name: nowritev
Expand Down
1 change: 1 addition & 0 deletions src/cli-readconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ void read_config_file(char* filename, FILE* config_file, cli_runopts* options) {
char* commentStart = NULL;
cfg_option cfg_opt;
int found, i;
// size_t i;
/* Update line number counter. */
linenum++;

Expand Down

0 comments on commit ac578da

Please sign in to comment.