Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Jan 9, 2024
1 parent f5ded6c commit 0208059
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/apps/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,6 @@ void limited_fprintf_for_number(FILE *f, const char *formatString, double val) {
szFormatingString[nLen++] = 'G';
}
szFormatingString[nLen++] = 0;
fprintf(f, szFormatingString, val);
int (*pfn_fprintf)(FILE *, const char *, ...) = fprintf;
pfn_fprintf(f, szFormatingString, val);
}

0 comments on commit 0208059

Please sign in to comment.