changeset 62:0e2d7767c00d

convcalc_ascii()'s one argument is unused, remove it.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 09 Jul 2011 11:57:54 +0300
parents 0f616ade936a
children b87192212b9a
files pwplib/attrconv.c pwplib/convert.c pwplib/convert.h
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/pwplib/attrconv.c	Sat Jul 09 11:51:19 2011 +0300
+++ b/pwplib/attrconv.c	Sat Jul 09 11:57:54 2011 +0300
@@ -106,7 +106,7 @@
  *  purely font/charset related
  */
 
-void convcalc_ascii(int x)
+void convcalc_ascii(void)
 {
   memcpy(pwpconv.font,
   /*00*/ " OOwoxAoooo6qrn*" 
--- a/pwplib/convert.c	Sat Jul 09 11:51:19 2011 +0300
+++ b/pwplib/convert.c	Sat Jul 09 11:57:54 2011 +0300
@@ -37,7 +37,7 @@
    {
      pwpwrite("ascii");
      if(chars&1)pwpwrite(" (no invert)");
-     convcalc_ascii(chars);
+     convcalc_ascii();
    }else
      pwpwrite("native ibm");
 
--- a/pwplib/convert.h	Sat Jul 09 11:51:19 2011 +0300
+++ b/pwplib/convert.h	Sat Jul 09 11:57:54 2011 +0300
@@ -25,7 +25,7 @@
 
 /* attrconv.c */
 void convcalc_1to12(void);
-void convcalc_ascii(int x);
+void convcalc_ascii(void);
 void convcalc_termsafe(void);
 void convcalc_monotab(int parms);
 void convcalc_colortab(int parms);