(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
This commit is contained in:
Andrew McCallum 1996-01-24 03:16:35 +00:00
parent fae6d412cc
commit 335e62ffb6

View file

@ -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]);