Skip to content

Commit

Permalink
ci: use develop for branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee committed Oct 4, 2023
1 parent a30eb28 commit bc3cf43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/win-ninja-icx-f-p-sf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: windows ninja icx ifx parallel sf
on:
push:
branches:
- main
- develop

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion src/H5system.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ HDvasprintf(char **bufp, const char *fmt, va_list _ap)
va_list ap;

va_copy(ap, _ap);
ret = vsnprintf(buf, bufsz, fmt, ap);
ret = vsnprintf(buf, bufsz, "%s", ap);
va_end(ap);
if (ret >= 0 && (size_t)ret < bufsz) {
*bufp = buf;
Expand Down

0 comments on commit bc3cf43

Please sign in to comment.