From 072436a019f50cc83450fb5d56708faca7e739e5 Mon Sep 17 00:00:00 2001 From: mccallum Date: Wed, 24 Jan 1996 03:16:35 +0000 Subject: [PATCH] (handle_printf_atsign): Fix type for va_arg (). git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@787 72102866-910b-0410-8b05-ffd578937521 --- Source/NSString.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSString.m b/Source/NSString.m index d850efaf9..67bf84a06 100644 --- a/Source/NSString.m +++ b/Source/NSString.m @@ -107,7 +107,7 @@ handle_printf_atsign (FILE *stream, /* xxx This implementation may not pay pay attention to as much of printf_info as it should. */ - string_object = va_arg (*ap_pointer, void*); + string_object = va_arg (*ap_pointer, id); len = fprintf(stream, "%*s", (info->left ? - info->width : info->width), [string_object cStringNoCopy]);