mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
(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:
parent
fae6d412cc
commit
335e62ffb6
1 changed files with 1 additions and 1 deletions
|
@ -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]);
|
||||
|
|
Loading…
Reference in a new issue