diff options
author | Philipp Stephani <phst@google.com> | 2019-12-05 01:12:39 +0100 |
---|---|---|
committer | Philipp Stephani <phst@google.com> | 2019-12-05 01:14:03 +0100 |
commit | 4472b053c3003a34803ec3ce5816caadec7b607a (patch) | |
tree | d7a73f0bda8009bf8d0175fa19656c03a37e915d /src | |
parent | bd95d66ae97f3dcfe73b972de935e27e434e49be (diff) | |
download | emacs-4472b053c3003a34803ec3ce5816caadec7b607a.tar.gz emacs-4472b053c3003a34803ec3ce5816caadec7b607a.tar.bz2 emacs-4472b053c3003a34803ec3ce5816caadec7b607a.zip |
Fix small bugs introduced in commit 096be9c454
* src/module-env-27.h:
* src/emacs-module.c (module_make_big_integer): Use 'emacs_limb_t'
instead of 'unsigned long' consistently
Diffstat (limited to 'src')
-rw-r--r-- | src/emacs-module.c | 2 | ||||
-rw-r--r-- | src/module-env-27.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/emacs-module.c b/src/emacs-module.c index 2cd3fbd3df5..12ed3b1f3e0 100644 --- a/src/emacs-module.c +++ b/src/emacs-module.c @@ -913,7 +913,7 @@ module_extract_big_integer (emacs_env *env, emacs_value arg, int *sign, static emacs_value module_make_big_integer (emacs_env *env, int sign, - ptrdiff_t count, const unsigned long *magnitude) + ptrdiff_t count, const emacs_limb_t *magnitude) { MODULE_FUNCTION_BEGIN (NULL); if (sign == 0) diff --git a/src/module-env-27.h b/src/module-env-27.h index da8ac0e7479..0fe2557d71b 100644 --- a/src/module-env-27.h +++ b/src/module-env-27.h @@ -10,9 +10,9 @@ EMACS_ATTRIBUTE_NONNULL (1); bool (*extract_big_integer) (emacs_env *env, emacs_value arg, int *sign, - ptrdiff_t *count, unsigned long *magnitude) + ptrdiff_t *count, emacs_limb_t *magnitude) EMACS_ATTRIBUTE_NONNULL (1); emacs_value (*make_big_integer) (emacs_env *env, int sign, ptrdiff_t count, - const unsigned long *magnitude) + const emacs_limb_t *magnitude) EMACS_ATTRIBUTE_NONNULL (1); |