diff options
author | Ulf Möller <ulf@openssl.org> | 2001-02-06 02:57:35 +0000 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 2001-02-06 02:57:35 +0000 |
commit | 4327aae816f6c147782b5a011c7f899558629c27 (patch) | |
tree | d71b0c4927df33dcfe16d40ff525b853a7833498 /MacOS | |
parent | 741a9690df52b947861deeafec87ab86074c0929 (diff) | |
download | openssl-new-4327aae816f6c147782b5a011c7f899558629c27.tar.gz |
format strings
Diffstat (limited to 'MacOS')
-rw-r--r-- | MacOS/GetHTTPS.src/GetHTTPS.cpp | 4 |
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()); } |