summaryrefslogtreecommitdiffstats
path: root/options.i
diff options
context:
space:
mode:
authorHenning Makholm <henning@makholm.net>2006-02-11 18:00:00 (EST)
committer Julien Jorge <julien.jorge@stuff-o-matic.com>2013-01-10 16:03:45 (EST)
commit00a8b13b5bf8cf2c367a0db3ae09086e45230968 (patch)
tree2cf634f141fc82b26bf1cfcc9de4c6f194208905 /options.i
parent03c71dffc5d7bcb4686260b21aaa268d68310613 (diff)
downloadxcftools-00a8b13b5bf8cf2c367a0db3ae09086e45230968.zip
xcftools-00a8b13b5bf8cf2c367a0db3ae09086e45230968.tar.gz
xcftools-00a8b13b5bf8cf2c367a0db3ae09086e45230968.tar.bz2
Import of release 0.9
Diffstat (limited to 'options.i')
-rw-r--r--options.i4
1 files changed, 2 insertions, 2 deletions
diff --git a/options.i b/options.i
index 07949a7..8748adf 100644
--- a/options.i
+++ b/options.i
@@ -13,7 +13,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
OPTIONGROUP(1i,General options);
@@ -345,7 +345,7 @@ OPTION(301,--percent,(n) set opacity in percent,
int n ;
sscanf(optarg,"%u%n",&pct,&n) ;
if( n != strlen(optarg) || pct > 100 )
- FatalGeneric(20,_("The argument to --pct is not a percentage"));
+ FatalGeneric(20,_("The argument to --percent is not a percentage"));
lastlayerspec(&flatspec,"--percent")->opacity = pct * 255 / 100 ;
break ;
}