_sntprintf is nonportable; use sprintf instead
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Thu, 11 Nov 1999 10:13:40 +0000 (10:13 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Thu, 11 Nov 1999 10:13:40 +0000 (10:13 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@297 cda61777-01e9-0310-a592-d414129be87e

sizetip.c

index 90c0573..321216a 100644 (file)
--- a/sizetip.c
+++ b/sizetip.c
@@ -90,7 +90,7 @@ int tip_enabled = 0;
 
 void UpdateSizeTip(HWND src, int cx, int cy)
 {
-    TCHAR str[16];
+    TCHAR str[32];
 
     if (!tip_enabled) return;
 
@@ -136,8 +136,7 @@ void UpdateSizeTip(HWND src, int cx, int cy)
 
     /* Generate the tip text */
 
-    _sntprintf(str, 16, "%dx%d", cx, cy);
-
+    sprintf(str, "%dx%d", cx, cy);
 
     if (!tip_wnd) {
         HDC hdc;