Skip to content

Commit

Permalink
replace () with (void)
Browse files Browse the repository at this point in the history
  • Loading branch information
s-u committed Nov 27, 2023
1 parent 19fb6ff commit 14f188a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static void TIFFErrorHandler_(const char* module, const char* fmt, va_list ap) {
Rf_error("%s: %s", module, txtbuf);
}

static void init_tiff() {
static void init_tiff(void) {
if (need_init) {
TIFFSetWarningHandler(TIFFWarningHandler_);
TIFFSetErrorHandler(TIFFErrorHandler_);
Expand Down

0 comments on commit 14f188a

Please sign in to comment.