Procházet zdrojové kódy

REVIEWED: SaveFileText() error checking

pull/1428/head
Ray před 4 roky
rodič
revize
05ab39ed9f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/utils.c

+ 1
- 1
src/utils.c Zobrazit soubor

@ -280,7 +280,7 @@ void SaveFileText(const char *fileName, char *text)
{
int count = fprintf(file, "%s", text);
if (count == 0) TRACELOG(LOG_WARNING, "FILEIO: [%s] Failed to write text file", fileName);
if (count < 0) TRACELOG(LOG_WARNING, "FILEIO: [%s] Failed to write text file", fileName);
else TRACELOG(LOG_INFO, "FILEIO: [%s] Text file saved successfully", fileName);
fclose(file);

Načítá se…
Zrušit
Uložit