inperror.c: indentations

This commit is contained in:
h_vogt 2012-12-15 19:51:56 +01:00
parent 8f44839f3e
commit 07ec7bd412
1 changed files with 16 additions and 16 deletions

View File

@ -3,7 +3,7 @@ Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
/*
* provide the error message appropriate for the given error code
*/
@ -30,29 +30,29 @@ char *INPerror(int type)
const char *val;
char *ebuf;
/*CDHW Lots of things set errMsg but it is never used so let's hack it in CDHW*/
/*CDHW Lots of things set errMsg but it is never used so let's hack it in CDHW*/
if ( errMsg ) {
val = errMsg; errMsg = NULL;}
else
/*CDHW end of hack CDHW*/
val = SPerror(type);
val = errMsg;
errMsg = NULL;
} else
/*CDHW end of hack CDHW*/
val = SPerror(type);
if (!val)
return NULL;
return NULL;
#ifdef HAVE_ASPRINTF
if (errRtn)
asprintf(&ebuf, "%s detected in routine \"%s\"\n", val, errRtn);
asprintf(&ebuf, "%s detected in routine \"%s\"\n", val, errRtn);
else
asprintf(&ebuf, "%s\n", val);
asprintf(&ebuf, "%s\n", val);
#else /* ~ HAVE_ASPRINTF */
if (errRtn){
ebuf = TMALLOC(char, strlen(val) + strlen(errRtn) + 25);
sprintf(ebuf, "%s detected in routine \"%s\"\n", val, errRtn);
}
else{
ebuf = TMALLOC(char, strlen(val) + 2);
sprintf(ebuf, "%s\n", val);
if (errRtn) {
ebuf = TMALLOC(char, strlen(val) + strlen(errRtn) + 25);
sprintf(ebuf, "%s detected in routine \"%s\"\n", val, errRtn);
} else {
ebuf = TMALLOC(char, strlen(val) + 2);
sprintf(ebuf, "%s\n", val);
}
#endif /* HAVE_ASPRINTF */
FREE(errMsg); /* pn: really needed ? */