aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2002-11-14 14:12:30 +0000
committerDave Love2002-11-14 14:12:30 +0000
commit020ea113e2060cc9f0838a7975d13424ce665485 (patch)
tree43ab48ab6501634d063ea9b18a86a7ec56ca7468 /src
parent30f637f83995baba49750edbeb7e99c72af01290 (diff)
downloademacs-020ea113e2060cc9f0838a7975d13424ce665485.tar.gz
emacs-020ea113e2060cc9f0838a7975d13424ce665485.zip
Declare all args (per C99).
Diffstat (limited to 'src')
-rw-r--r--src/charset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c
index ebd247320f6..a0ab20c26a7 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -1272,7 +1272,7 @@ strwidth (str, len)
1272int 1272int
1273c_string_width (str, len, precision, nchars, nbytes) 1273c_string_width (str, len, precision, nchars, nbytes)
1274 const unsigned char *str; 1274 const unsigned char *str;
1275 int precision, *nchars, *nbytes; 1275 int len, precision, *nchars, *nbytes;
1276{ 1276{
1277 int i = 0, i_byte = 0; 1277 int i = 0, i_byte = 0;
1278 int width = 0; 1278 int width = 0;