From e654b062615c77f2fc8bacb1e21c4b7e0f0f285c Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Sun, 20 Mar 2005 13:56:53 +0000 Subject: [PATCH] (SCM_STRING_UCHARS): Added missing argument. --- libguile/ChangeLog | 4 ++++ 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 + + * strings.h (SCM_STRING_UCHARS): Added missing argument. + 2005-03-18 Kevin Ryde * 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 -- 2.20.1