Browse Source

GetErrorStr cleanup

pull/876/head^2
qndel 6 years ago committed by Anders Jenbo
parent
commit
41fc140628
  1. 3
      Source/appfat.cpp

3
Source/appfat.cpp

@ -78,8 +78,7 @@ char *GetErrorStr(DWORD error_code)
size = strlen(sz_error_buf);
chr = &sz_error_buf[size - 1];
while (size > 0) {
size--;
while (size-- > 0) {
chr--;
if (*chr != '\r' && *chr != '\n')

Loading…
Cancel
Save