Browse Source

(#4) Try to print Graphics Control Block error to stderr

rexim 5 years ago
parent
commit
335b16ce00
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/vodus_emotes.cpp

+ 1 - 1
src/vodus_emotes.cpp

@@ -20,7 +20,7 @@ struct Gif_Animat
             index = (index + 1) % file->ImageCount;
             int ok = DGifSavedExtensionToGCB(file, index, &gcb);
             if (!ok) {
-                println(stdout, "[ERROR] Could not retrieve Graphics Control Block from `", file_path, "`");
+                println(stderr, "[ERROR] Could not retrieve Graphics Control Block from `", file_path, "`");
                 abort();
             }
             delay_time = gcb.DelayTime + delay_time;