about summary refs log tree commit diff
path: root/editor/pamthreshold.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2010-09-28 02:30:51 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2010-09-28 02:30:51 +0000
commit8e26a1fad535e8942775380842eacd26e8582a95 (patch)
tree788d7f4572bdadebbc1a4b109ebfb1ae60aad3da /editor/pamthreshold.c
parentd7bee34128d0d9246c745df20329e02add61d68d (diff)
downloadnetpbm-mirror-8e26a1fad535e8942775380842eacd26e8582a95.tar.gz
netpbm-mirror-8e26a1fad535e8942775380842eacd26e8582a95.tar.xz
netpbm-mirror-8e26a1fad535e8942775380842eacd26e8582a95.zip
Rename optParseOptions3 to pm_optParseOptions3, etc
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1312 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'editor/pamthreshold.c')
-rw-r--r--editor/pamthreshold.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/pamthreshold.c b/editor/pamthreshold.c
index c5f48147..ceddff15 100644
--- a/editor/pamthreshold.c
+++ b/editor/pamthreshold.c
@@ -161,13 +161,13 @@ parseCommandLine(int                 argc,
     /* set the defaults */
     cmdlineP->width = cmdlineP->height = 0U;
 
-    /* set the option description for optParseOptions3 */
+    /* set the option description for pm_optParseOptions3 */
     opt.opt_table     = option_def;
     opt.short_allowed = FALSE;           /* long options only */
     opt.allowNegNum   = FALSE;           /* we have no numbers at all */
 
     /* parse commandline, change argc, argv, and *cmdlineP */
-    optParseOptions3(&argc, argv, opt, sizeof(opt), 0);
+    pm_optParseOptions3(&argc, argv, opt, sizeof(opt), 0);
 
     if (cmdlineP->simple + localSpec + dualSpec > 1)
         pm_error("You may specify only one of -simple, -local, and -dual");