Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sasha0552 authored Aug 27, 2024
1 parent ab0f25a commit 454098e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ jobs:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false

matrix:
os: [ubuntu-latest, windows-latest]
build_type: [Release]
Expand Down
2 changes: 1 addition & 1 deletion src/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ bool parse_ulong(const char *arg, unsigned long *value) {
return true;
}

bool parse_ulong_array(const char *arg, const char *delimiter, const size_t max_count, unsigned long **values, size_t *count) {
bool parse_ulong_array(const char *arg, const char *delimiter, const size_t max_count, unsigned long *values, size_t *count) {
// Check if the input or output argument is invalid
if (arg == NULL || values == NULL || count == NULL) {
return false;
Expand Down
2 changes: 1 addition & 1 deletion src/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@
/***** ***** ***** ***** ***** FUNCTIONS ***** ***** ***** ***** *****/

bool parse_ulong(const char *arg, unsigned long *value);
bool parse_ulong_array(const char *arg, const char *delimiter, const size_t max_count, unsigned long **values, size_t *count);
bool parse_ulong_array(const char *arg, const char *delimiter, const size_t max_count, unsigned long *values, size_t *count);

0 comments on commit 454098e

Please sign in to comment.