mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-02 09:31:07 +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
bffd394704
commit
072436a019
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
|
/* xxx This implementation may not pay pay attention to as much
|
||||||
of printf_info as it should. */
|
of printf_info as it should. */
|
||||||
|
|
||||||
string_object = va_arg (*ap_pointer, void*);
|
string_object = va_arg (*ap_pointer, id);
|
||||||
len = fprintf(stream, "%*s",
|
len = fprintf(stream, "%*s",
|
||||||
(info->left ? - info->width : info->width),
|
(info->left ? - info->width : info->width),
|
||||||
[string_object cStringNoCopy]);
|
[string_object cStringNoCopy]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue