Found by Lintian, patches provided by C. Schoenert
This commit is contained in:
Holger Vogt 2025-09-13 12:18:05 +02:00
parent 7af862af3d
commit 0648d5e844
4 changed files with 5 additions and 5 deletions

View File

@ -13794,7 +13794,7 @@ New include File:
2010-10-09 Robert Larice 2010-10-09 Robert Larice
* src/include/complex.h : * src/include/complex.h :
!REVERT! remove typedef for _complex, which is used nowhere !REVERT! remove typedef for _complex, which is used nowhere
this breaks MSVC, currently unkown why, FIXME this breaks MSVC, currently unknown why, FIXME
2010-10-09 Robert Larice 2010-10-09 Robert Larice
* src/frontend/parse-bison.c , * src/frontend/parse-bison.c ,

View File

@ -330,7 +330,7 @@ cp_usrset(struct variable *var, bool isset)
ft_stricterror = isset; ft_stricterror = isset;
if (ft_ngdebug) if (ft_ngdebug)
fprintf(stdout, "Note: strict_errorhandling is set\n"); fprintf(stdout, "Note: strict_errorhandling is set\n");
/* Immediately bail out when spinit error has occured */ /* Immediately bail out when spinit error has occurred */
if (ft_spiniterror) if (ft_spiniterror)
controlled_exit(EXIT_BAD); controlled_exit(EXIT_BAD);
} else if (eq(var->va_name, "rawfileprec")) { } else if (eq(var->va_name, "rawfileprec")) {

View File

@ -133,7 +133,7 @@ typedef struct /* 64-bit version (otherwise same as above) */
#define KLU_EMPTY_MATRIX (2) /* Modified by Francesco Lannutti - Case when the matrix is empty */ #define KLU_EMPTY_MATRIX (2) /* Modified by Francesco Lannutti - Case when the matrix is empty */
#define KLU_OUT_OF_MEMORY (-2) #define KLU_OUT_OF_MEMORY (-2)
#define KLU_INVALID (-3) #define KLU_INVALID (-3)
#define KLU_TOO_LARGE (-4) /* integer overflow has occured */ #define KLU_TOO_LARGE (-4) /* integer overflow has occurred */
typedef struct klu_common_struct typedef struct klu_common_struct
{ {

View File

@ -336,9 +336,9 @@ void cm_filesource(ARGS) /* structure holding parms, inputs, outputs, etc.
loc->timeinterval[1] = loc->indata->datavec[loc->indata->actpointer + stepsize]; loc->timeinterval[1] = loc->indata->datavec[loc->indata->actpointer + stepsize];
if (terr) if (terr)
cm_message_printf("WARNING: some error occured during reading the time values"); cm_message_printf("WARNING: some error occurred during reading the time values");
if (derr) if (derr)
cm_message_printf("WARNING: some error occured during reading the data values"); cm_message_printf("WARNING: some error occurred during reading the data values");
} }
loc = STATIC_VAR (locdata); loc = STATIC_VAR (locdata);