aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc/impl/codegen/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/grpc/impl/codegen/log.h')
-rw-r--r--include/grpc/impl/codegen/log.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/grpc/impl/codegen/log.h b/include/grpc/impl/codegen/log.h
index aa86fc4c17..9090a34cd5 100644
--- a/include/grpc/impl/codegen/log.h
+++ b/include/grpc/impl/codegen/log.h
@@ -34,6 +34,7 @@
#ifndef GRPC_IMPL_CODEGEN_LOG_H
#define GRPC_IMPL_CODEGEN_LOG_H
+#include <inttypes.h>
#include <stdarg.h>
#include <stdlib.h> /* for abort() */
@@ -74,7 +75,8 @@ const char *gpr_log_severity_string(gpr_log_severity severity);
/* Log a message. It's advised to use GPR_xxx above to generate the context
* for each message */
GPRAPI void gpr_log(const char *file, int line, gpr_log_severity severity,
- const char *format, ...);
+ const char *format, ...)
+ __attribute__((format(printf, 4, 5)));
GPRAPI void gpr_log_message(const char *file, int line,
gpr_log_severity severity, const char *message);