Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

cmenu: fix for MinGW compiler

Changeset f8f323e62163

Parent 26a128885385

by Yuki KODAMA

Changes to one file · Browse files at f8f323e62163 Showing diff from parent 26a128885385 Diff from another changeset...

 
429
430
431
432
 
433
434
435
436
 
437
438
439
 
429
430
431
 
432
433
434
435
 
436
437
438
439
@@ -429,11 +429,11 @@
    if (uFlags & GCS_UNICODE)   { - wcscpy_s((wchar_t*)pszName, cchMax, _WCSTR(psz)); + wcscpy((wchar_t*)pszName, _WCSTR(psz));   }   else   { - strcpy_s((char*)pszName, cchMax, psz); + strcpy((char*)pszName, psz);   }   return NOERROR;  }