Browse Source

Fix warnings

rexim 3 years ago
parent
commit
fbaeb0df59
1 changed files with 2 additions and 0 deletions
  1. 2 0
      main.c

+ 2 - 0
main.c

@@ -101,6 +101,8 @@ void layer_save_as_bin(Layer layer, const char *file_path)
 
 void layer_load_from_bin(Layer layer, const char *file_path)
 {
+    (void) layer;
+    (void) file_path;
     assert(0 && "TODO: layer_load_from_bin is not implemented yet!");
 }