diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2005-03-20 13:56:53 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2005-03-20 13:56:53 +0000 |
commit | e654b062615c77f2fc8bacb1e21c4b7e0f0f285c (patch) | |
tree | 60ce50947e00cd670b2240c9fa9b927df14f0c4e | |
parent | aa9200e51aecc62743a07da8029a8bd0144dd93e (diff) | |
download | guile-e654b062615c77f2fc8bacb1e21c4b7e0f0f285c.tar.gz |
(SCM_STRING_UCHARS): Added missing argument.
-rw-r--r-- | libguile/ChangeLog | 4 | ||||
-rw-r--r-- | libguile/strings.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libguile/ChangeLog b/libguile/ChangeLog index a16c044ae..f2712c925 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,7 @@ +2005-03-20 Mikael Djurfeldt <djurfeldt@nada.kth.se> + + * strings.h (SCM_STRING_UCHARS): Added missing argument. + 2005-03-18 Kevin Ryde <user42@zip.com.au> * arbiters.c (FETCH_STORE) [generic C]: Should be diff --git a/libguile/strings.h b/libguile/strings.h index 1da482b32..732353a55 100644 --- a/libguile/strings.h +++ b/libguile/strings.h @@ -3,7 +3,7 @@ #ifndef SCM_STRINGS_H #define SCM_STRINGS_H -/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2004 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2004, 2005 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -156,7 +156,7 @@ SCM_API size_t scm_i_deprecated_string_length (SCM str); #define SCM_STRINGP(x) scm_i_deprecated_stringp(x) #define SCM_STRING_CHARS(x) scm_i_deprecated_string_chars(x) #define SCM_STRING_LENGTH(x) scm_i_deprecated_string_length(x) -#define SCM_STRING_UCHARS ((unsigned char *)SCM_STRING_CHARS (str)) +#define SCM_STRING_UCHARS(str) ((unsigned char *)SCM_STRING_CHARS (str)) #endif |