Skip to content

Commit 4c22f5c

Browse files
authored
Fix signature of aws_backtrace_log (#1206)
original: #1205 from @laramiel
1 parent 7e7a386 commit 4c22f5c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/windows/system_info.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,8 @@ void aws_backtrace_print(FILE *fp, void *call_site_data) {
295295
AWS_LS_COMMON_GENERAL, "aws_backtrace_print: backtrace requested, but logging is unsupported on this platform");
296296
}
297297

298-
void aws_backtrace_log() {
298+
void aws_backtrace_log(int log_level) {
299+
(void)log_level;
299300
AWS_LOGF_TRACE(
300301
AWS_LS_COMMON_GENERAL, "aws_backtrace_log: backtrace requested, but logging is unsupported on this platform");
301302
}

0 commit comments

Comments
 (0)