diff options
| author | Dave Love | 2002-11-14 14:12:30 +0000 |
|---|---|---|
| committer | Dave Love | 2002-11-14 14:12:30 +0000 |
| commit | 020ea113e2060cc9f0838a7975d13424ce665485 (patch) | |
| tree | 43ab48ab6501634d063ea9b18a86a7ec56ca7468 /src | |
| parent | 30f637f83995baba49750edbeb7e99c72af01290 (diff) | |
| download | emacs-020ea113e2060cc9f0838a7975d13424ce665485.tar.gz emacs-020ea113e2060cc9f0838a7975d13424ce665485.zip | |
Declare all args (per C99).
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.c | 2 |
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) | |||
| 1272 | int | 1272 | int |
| 1273 | c_string_width (str, len, precision, nchars, nbytes) | 1273 | c_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; |