diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-26 19:12:36 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-26 19:12:36 -0700 |
commit | c5101a77a4066d979698d356c3a9c7f387007359 (patch) | |
tree | 0d18e8940a4fac6092a98a07bcc625bd29e67179 /src/font.c | |
parent | dd3f25f792d724f59fac3e2d4faa21b311f21137 (diff) | |
download | emacs-c5101a77a4066d979698d356c3a9c7f387007359.tar.gz emacs-c5101a77a4066d979698d356c3a9c7f387007359.tar.bz2 emacs-c5101a77a4066d979698d356c3a9c7f387007359.zip |
Variadic C functions now count arguments with size_t, not int.
Diffstat (limited to 'src/font.c')
-rw-r--r-- | src/font.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/font.c b/src/font.c index 9e8b7029c22..6b2e2f2712d 100644 --- a/src/font.c +++ b/src/font.c @@ -3831,10 +3831,10 @@ be an OpenType font, and whose GPOS table of `thai' script's default language system must contain `mark' feature. usage: (font-spec ARGS...) */) - (int nargs, Lisp_Object *args) + (size_t nargs, Lisp_Object *args) { Lisp_Object spec = font_make_spec (); - int i; + size_t i; for (i = 0; i < nargs; i += 2) { |