diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1998-07-16 22:21:06 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1998-07-16 22:21:06 +0000 |
commit | a515d28771ec68ca5dfb324d8e5c857ddfec6e15 (patch) | |
tree | 6b87fbe051df36e9953b8b7d457cf6c89812f97a /libguile/unif.c | |
parent | cd51f30d818e99e34ad975ad35808417bd4215d8 (diff) | |
download | guile-a515d28771ec68ca5dfb324d8e5c857ddfec6e15.tar.gz |
* unif.c: Say that ivect and uvect are of type signed and unsigned
long instead of int in commentary so that it correctly describes
the implementation.
Diffstat (limited to 'libguile/unif.c')
-rw-r--r-- | libguile/unif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/unif.c b/libguile/unif.c index fd1d752b9..5cd9e0b28 100644 --- a/libguile/unif.c +++ b/libguile/unif.c @@ -62,8 +62,8 @@ * unsigned char string * char byvect * boolean bvect - * signed int ivect - * unsigned int uvect + * signed long ivect + * unsigned long uvect * float fvect * double dvect * complex double cvect |