summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilipp Stephani <phst@google.com>2019-12-05 01:12:39 +0100
committerPhilipp Stephani <phst@google.com>2019-12-05 01:14:03 +0100
commit4472b053c3003a34803ec3ce5816caadec7b607a (patch)
treed7a73f0bda8009bf8d0175fa19656c03a37e915d /src
parentbd95d66ae97f3dcfe73b972de935e27e434e49be (diff)
downloademacs-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.c2
-rw-r--r--src/module-env-27.h4
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);