summaryrefslogtreecommitdiff
path: root/MacOS
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2001-02-06 02:57:35 +0000
committerUlf Möller <ulf@openssl.org>2001-02-06 02:57:35 +0000
commit4327aae816f6c147782b5a011c7f899558629c27 (patch)
treed71b0c4927df33dcfe16d40ff525b853a7833498 /MacOS
parent741a9690df52b947861deeafec87ab86074c0929 (diff)
downloadopenssl-new-4327aae816f6c147782b5a011c7f899558629c27.tar.gz
format strings
Diffstat (limited to 'MacOS')
-rw-r--r--MacOS/GetHTTPS.src/GetHTTPS.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/MacOS/GetHTTPS.src/GetHTTPS.cpp b/MacOS/GetHTTPS.src/GetHTTPS.cpp
index d62dc50473..3a5e3f0186 100644
--- a/MacOS/GetHTTPS.src/GetHTTPS.cpp
+++ b/MacOS/GetHTTPS.src/GetHTTPS.cpp
@@ -167,7 +167,7 @@ void main(void)
tempString[bytesRead] = '\0';
- printf(tempString);
+ printf("%s", tempString);
}
printf("\n\n\n");
@@ -201,7 +201,7 @@ EXITPOINT:
{
printf("An error occurred:\n");
- printf(GetErrorMessage());
+ printf("%s",GetErrorMessage());
}