CalmaWriteZ.c: warning: variable 'rtype' is used uninitialized
CalmaWriteZ.c:418:5: warning: variable 'rtype' is used uninitialized whenever 'if' condition is true clang18 -Wall warning cleanup [-Wsometimes-uninitialized]
This commit is contained in:
parent
fca0c2945d
commit
60e78f4ab4
|
|
@ -406,7 +406,7 @@ calmaDumpStructureZ(def, outf, calmaDefHash, filename)
|
||||||
HashTable *calmaDefHash;
|
HashTable *calmaDefHash;
|
||||||
char *filename;
|
char *filename;
|
||||||
{
|
{
|
||||||
int nbytes, rtype;
|
int nbytes = -1, rtype = 0;
|
||||||
char *strname = NULL, *newnameptr;
|
char *strname = NULL, *newnameptr;
|
||||||
HashEntry *he, *he2;
|
HashEntry *he, *he2;
|
||||||
CellDef *edef;
|
CellDef *edef;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue