about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--editor/pambackground.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/pambackground.c b/editor/pambackground.c
index 070e9000..6465f6d7 100644
--- a/editor/pambackground.c
+++ b/editor/pambackground.c
@@ -4,7 +4,7 @@
 #include "shhopt.h"
 #include "pam.h"
 
-struct cmdlineInfo {
+struct CmdlineInfo {
     /* All the information the user supplied in the command line,
        in a form easy for the program to use.
     */
@@ -16,7 +16,7 @@ struct cmdlineInfo {
 
 static void
 parseCommandLine(int argc, char ** const argv,
-                 struct cmdlineInfo * const cmdlineP) {
+                 struct CmdlineInfo * const cmdlineP) {
 /*----------------------------------------------------------------------------
    Note that the file spec array we return is stored in the storage that
    was passed to us as the argv array.
@@ -470,7 +470,7 @@ writeOutput(const struct pam *            const inpamP,
 int
 main(int argc, char *argv[]) {
 
-    struct cmdlineInfo cmdline;
+    struct CmdlineInfo cmdline;
     struct pam inpam;
     FILE * ifP;
     pm_filepos rasterpos;