home · contact · privacy
Corrected comment spellings and line lengths in code.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 8 Sep 2013 14:03:31 +0000 (16:03 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 8 Sep 2013 14:03:31 +0000 (16:03 +0200)
src/main.c
src/readwrite.h

index 0cdcaf16293db6472075f472c6ac09aacf29b1a9..12b8ca52f15528997c2af90520a4668df48d5a32 100644 (file)
@@ -15,7 +15,7 @@
                         */
 #include "keybindings.h" /* for init_keybindings(), get_action_key() */
 #include "readwrite.h" /* for [read/write]_uint[8/16/32][_bigendian](),
-                        * try_fopen(), try_fclose(), try_fclose_unlink_renmae()
+                        * try_fopen(), try_fclose(), try_fclose_unlink_rename()
                         */
 #include "map_objects.h" /* for structs Monster, Item, Player,
                           * init_map_object_defs(), read_map_objects(),
@@ -123,8 +123,8 @@ int main(int argc, char *argv[])
     /* For non-interactive mode, try to load world state from record file. */
     else
     {
-        err_r = "Trouble reading from 'record' file (read_uint32_bigendian() in "
-                "main()).";
+        err_r = "Trouble reading from 'record' file (read_uint32_bigendian() "
+                "in main()).";
         if (0 == world.interactive)
         {
             file = try_fopen(recordfile, "r", &world, f_name);
index bcdf10eb20632caada30e8ee02fb35cd586ee8cf..5832a768a5f0659c9e9d9c67ea6d744e191b5596 100644 (file)
@@ -53,8 +53,8 @@ extern uint8_t textfile_sizes(FILE * file, uint16_t * linemax_p,
 
 
 
-/* These routines for reading values "x" from / writing values to "file" ensure a
- * defined endianness and consistent error codes: return 0 on success and 1 on
+/* These routines for reading values "x" from / writing values to "file" ensure
+ * defined endianness and consistent error codes: return 0 on success and 1 on
  * fgetc()/fputc() failure.
  */
 extern uint8_t read_uint8(FILE * file, uint8_t * x);