about summary refs log tree commit diff
path: root/generator/pamgauss.c
diff options
context:
space:
mode:
Diffstat (limited to 'generator/pamgauss.c')
-rw-r--r--generator/pamgauss.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/generator/pamgauss.c b/generator/pamgauss.c
index eb5fa3fe..ccbcc482 100644
--- a/generator/pamgauss.c
+++ b/generator/pamgauss.c
@@ -68,7 +68,8 @@ parseCommandLine(int argc, char ** argv,
         struct pam pam;
         if (strlen(cmdlineP->tupletype)+1 > sizeof(pam.tuple_type))
             pm_error("The tuple type you specified is too long.  "
-                     "Maximum %d characters.", sizeof(pam.tuple_type)-1);
+                     "Maximum %u characters.",
+                     (unsigned)sizeof(pam.tuple_type)-1);
     }        
 
     if (!sigmaSpec)