diff options
Diffstat (limited to 'src/common/text.c')
-rw-r--r-- | src/common/text.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/text.c b/src/common/text.c index ec407833..22467c99 100644 --- a/src/common/text.c +++ b/src/common/text.c @@ -927,7 +927,7 @@ PrintText (session *sess, char *text) } void -PrintTextf (session *sess, char *format, ...) +PrintTextf (session *sess, const char *format, ...) { va_list args; char *buf; @@ -941,7 +941,7 @@ PrintTextf (session *sess, char *format, ...) } void -PrintTextTimeStampf (session *sess, time_t timestamp, char *format, ...) +PrintTextTimeStampf (session *sess, time_t timestamp, const char *format, ...) { va_list args; char *buf; |