* GSWeb.framework/GSWAction.m,

* GSWeb.framework/GSWApplication.m,
	* GSWeb.framework/GSWDirectAction.m,
	* GSWeb.framework/GSWSession.m,
	* GSWeb.framework/GSWTemplateParser.m: Do not initialize
	va_list	with NULL.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@19352 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Ayers 2004-05-16 15:57:09 +00:00
parent ff7a27f73e
commit 477c429eca
6 changed files with 20 additions and 13 deletions

View file

@ -1,6 +1,13 @@
2004-05-16 David Ayers <d.ayers@inode.at>
* GSWeb.framework/GNUmakefile: Make GSWDefines.h a public header.
* GSWeb.framework/GSWAction.m,
* GSWeb.framework/GSWApplication.m,
* GSWeb.framework/GSWDirectAction.m,
* GSWeb.framework/GSWSession.m,
* GSWeb.framework/GSWTemplateParser.m: Do not initialize va_list
with NULL.
2004-05-14 Manuel Guesdon <mguesdon@orange-concept.com>

View file

@ -323,7 +323,7 @@ RCS_ID("$Id$")
//--------------------------------------------------------------------
-(void)logWithFormat:(NSString*)aFormat,...
{
va_list ap=NULL;
va_list ap;
va_start(ap,aFormat);
[GSWApplication logWithFormat:aFormat
arguments:ap];
@ -333,7 +333,7 @@ RCS_ID("$Id$")
//--------------------------------------------------------------------
+(void)logWithFormat:(NSString*)aFormat,...
{
va_list ap=NULL;
va_list ap;
va_start(ap,aFormat);
[GSWApplication logWithFormat:aFormat
arguments:ap];
@ -349,7 +349,7 @@ RCS_ID("$Id$")
//--------------------------------------------------------------------
-(void)debugWithFormat:(NSString*)aFormat,...
{
va_list ap=NULL;
va_list ap;
va_start(ap,aFormat);
[[GSWApplication application]debugWithFormat:aFormat
arguments:ap];

View file

@ -3894,7 +3894,7 @@ to another instance **/
//--------------------------------------------------------------------
-(void)debugWithFormat:(NSString*)aFormat,...
{
va_list ap=NULL;
va_list ap;
va_start(ap,aFormat);
[self debugWithFormat:aFormat
arguments:ap];
@ -3904,7 +3904,7 @@ to another instance **/
//--------------------------------------------------------------------
+(void)debugWithFormat:(NSString*)aFormat,...
{
va_list ap=NULL;
va_list ap;
va_start(ap,aFormat);
[GSWApp debugWithFormat:aFormat
arguments:ap];
@ -3922,7 +3922,7 @@ to another instance **/
//--------------------------------------------------------------------
-(void)logWithFormat:(NSString*)aFormat,...
{
va_list ap=NULL;
va_list ap;
va_start(ap,aFormat);
[self logWithFormat:aFormat
arguments:ap];
@ -3932,7 +3932,7 @@ to another instance **/
//--------------------------------------------------------------------
+(void)logWithFormat:(NSString*)aFormat,...
{
va_list ap=NULL;
va_list ap;
va_start(ap,aFormat);
[GSWApp logWithFormat:aFormat
arguments:ap];
@ -3953,7 +3953,7 @@ to another instance **/
//--------------------------------------------------------------------
-(void)logErrorWithFormat:(NSString*)aFormat,...
{
va_list ap=NULL;
va_list ap;
va_start(ap,aFormat);
[self logErrorWithFormat:aFormat
arguments:ap];
@ -3963,7 +3963,7 @@ to another instance **/
//--------------------------------------------------------------------
+(void)logErrorWithFormat:(NSString*)aFormat,...
{
va_list ap=NULL;
va_list ap;
va_start(ap,aFormat);
[GSWApp logErrorWithFormat:aFormat
arguments:ap];

View file

@ -168,7 +168,7 @@ RCS_ID("$Id$")
GSWRequest* request=[self request];
if (request)
{
va_list ap=NULL;
va_list ap;
id key=nil;
va_start(ap, firstKey);
key = firstKey;
@ -189,7 +189,7 @@ RCS_ID("$Id$")
GSWRequest* request=[self request];
if (request)
{
va_list ap=NULL;
va_list ap;
id key=nil;
va_start(ap, firstKey);
key = firstKey;

View file

@ -646,7 +646,7 @@ RCS_ID("$Id$")
//--------------------------------------------------------------------
-(void)debugWithFormat:(NSString*)aFormat,...
{
va_list ap=NULL;
va_list ap;
va_start(ap,aFormat);
[GSWApp debugWithFormat:aFormat
arguments:ap];

View file

@ -294,7 +294,7 @@ RCS_ID("$Id$")
//--------------------------------------------------------------------
-(void)addErrorMessageFormat:(NSString*)format,...
{
va_list ap=NULL;
va_list ap;
va_start(ap,format);
[self addErrorMessageFormat:format
arguments:ap];