Description: spelling fixes
 use the correct spelling of occurred
Author: Christian T. Steigies <cts@debian.org>
Last-Update: 2018-09-03
Index: bugsquish/bugsquish.c
===================================================================
--- bugsquish.orig/bugsquish.c
+++ bugsquish/bugsquish.c
@@ -1056,7 +1056,7 @@ void setup(void)
     {
       fprintf(stderr,
               "\nError: I could not initialize video!\n"
-              "The Simple DirectMedia error that occured was:\n"
+              "The Simple DirectMedia error that occurred was:\n"
               "%s\n\n", SDL_GetError());
       exit(1);
     }
@@ -1070,7 +1070,7 @@ void setup(void)
         {
           fprintf(stderr,
                   "\nWarning: I could not initialize audio!\n"
-                  "The Simple DirectMedia error that occured was:\n"
+                  "The Simple DirectMedia error that occurred was:\n"
                   "%s\n\n", SDL_GetError());
           use_sound = 0;
         }
@@ -1087,7 +1087,7 @@ void setup(void)
           fprintf(stderr,
                   "\nWarning: I could not set up audio for 22050 Hz "
                   "16-bit stereo.\n"
-                  "The Simple DirectMedia error that occured was:\n"
+                  "The Simple DirectMedia error that occurred was:\n"
                   "%s\n\n", SDL_GetError());
           use_sound = 0;
         }
@@ -1106,7 +1106,7 @@ void setup(void)
           fprintf(stderr,
                   "\nWarning: I could not set up fullscreen video for "
                   "%d x %d mode.\n"
-                  "The Simple DirectMedia error that occured was:\n"
+                  "The Simple DirectMedia error that occurred was:\n"
                   "%s\n\n", WIDTH, HEIGHT, SDL_GetError());
           use_fullscreen = 0;
         }
@@ -1120,7 +1120,7 @@ void setup(void)
         {
           fprintf(stderr,
                   "\nError: I could not set up video for %d x %d mode.\n"
-                  "The Simple DirectMedia error that occured was:\n"
+                  "The Simple DirectMedia error that occurred was:\n"
                   "%s\n\n", WIDTH, HEIGHT, SDL_GetError());
           exit(1);
         }
@@ -1186,7 +1186,7 @@ void setup(void)
           fprintf(stderr,
                   "\nError: I couldn't load a graphics file:\n"
                   "%s\n"
-                  "The Simple DirectMedia error that occured was:\n"
+                  "The Simple DirectMedia error that occurred was:\n"
                   "%s\n\n", image_names[i], SDL_GetError());
           exit(1);
         }
@@ -1201,7 +1201,7 @@ void setup(void)
           fprintf(stderr,
                   "\nError: I couldn't convert a file to the display format:\n"
                   "%s\n"
-                  "The Simple DirectMedia error that occured was:\n"
+                  "The Simple DirectMedia error that occurred was:\n"
                   "%s\n\n", image_names[i], SDL_GetError());
           exit(1);
         }
@@ -1213,7 +1213,7 @@ void setup(void)
           fprintf(stderr,
                   "\nError: I could not set the color key for the file:\n"
                   "%s\n"
-                  "The Simple DirectMedia error that occured was:\n"
+                  "The Simple DirectMedia error that occurred was:\n"
                   "%s\n\n", image_names[i], SDL_GetError());
           exit(1);
         }
@@ -1261,7 +1261,7 @@ void setup(void)
               fprintf(stderr,
                       "\nError: I could not load the sound file:\n"
                       "%s\n"
-                      "The Simple DirectMedia error that occured was:\n"
+                      "The Simple DirectMedia error that occurred was:\n"
                       "%s\n\n", sound_names[i], SDL_GetError());
               exit(1);
             }
@@ -1278,7 +1278,7 @@ void setup(void)
           fprintf(stderr,
                   "\nError: I could not load the music file:\n"
                   "%s\n"
-                  "The Simple DirectMedia error that occured was:\n"
+                  "The Simple DirectMedia error that occurred was:\n"
                   "%s\n\n", MUS_TITLE, SDL_GetError());
           exit(1);
         }
@@ -1291,7 +1291,7 @@ void setup(void)
           fprintf(stderr,
                   "\nError: I could not load the music file:\n"
                   "%s\n"
-                  "The Simple DirectMedia error that occured was:\n"
+                  "The Simple DirectMedia error that occurred was:\n"
                   "%s\n\n", MUS_GAME, SDL_GetError());
           exit(1);
         }
@@ -1496,7 +1496,7 @@ void seticon(void)
     {
       fprintf(stderr,
               "\nError: I could not load the icon image: %s\n"
-              "The Simple DirectMedia error that occured was:\n"
+              "The Simple DirectMedia error that occurred was:\n"
               "%s\n\n", DATA_PREFIX "images/icon.png", SDL_GetError());
       exit(1);
     }
@@ -2083,7 +2083,7 @@ FILE * openstate(char * mode)
         fprintf(stderr, "for write:");
       
      fprintf(stderr, "\n%s\n"
-              "The error that occured was:\n"
+              "The error that occurred was:\n"
               "%s\n\n", filename, strerror(errno));
     }
   
@@ -2138,7 +2138,7 @@ FILE * opendata(char * mode)
         fprintf(stderr, "for write:");
       
      fprintf(stderr, "\n%s\n"
-              "The error that occured was:\n"
+              "The error that occurred was:\n"
               "%s\n\n", filename, strerror(errno));
     }
   
