mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 08:41:03 +00:00
(dissect_method_return): Initialize RETFRAME to NULL to prevent warning.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1181 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
27b1833e20
commit
908c58ef31
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
/* Implementation of functions for dissecting/making method calls
|
/* Implementation of functions for dissecting/making method calls
|
||||||
Copyright (C) 1994, 1995 Free Software Foundation, Inc.
|
Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||||
Date: Oct 1994
|
Date: Oct 1994
|
||||||
|
@ -487,7 +487,7 @@ dissect_method_return(arglist_t argframe, const char *type,
|
||||||
BOOL out_parameters,
|
BOOL out_parameters,
|
||||||
void(*f)(int,void*,const char*,int))
|
void(*f)(int,void*,const char*,int))
|
||||||
{
|
{
|
||||||
retval_t retframe;
|
retval_t retframe = NULL;
|
||||||
int argnum;
|
int argnum;
|
||||||
int retsize;
|
int retsize;
|
||||||
int flags;
|
int flags;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue