Skip to content

Commit

Permalink
Merge pull request #5 from hamishcoleman/main
Browse files Browse the repository at this point in the history
Logging build fixes
  • Loading branch information
hamishcoleman authored Oct 31, 2023
2 parents f9d0768 + 32e6309 commit d73ae00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/logging.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <n3n/logging.h>
#include <stdarg.h> // for va_end, va_list, va_start
#include <stdio.h> // for snprinf
#include <stdlib.h> // for getenv
#include <string.h> // for strlen
#include <time.h> // for time_t

Expand All @@ -33,7 +34,7 @@ void closelog () {
void openlog (char *s, int a, int b) {
return;
}
void syslog (int a, char *s, char *buf) {
void syslog (int a, char *fmt, ...) {
return;
}
#endif
Expand Down

0 comments on commit d73ae00

Please sign in to comment.