handle missing return values

This commit is contained in:
Patrick Georgi
2025-12-09 22:38:19 +01:00
parent 1b852f19a5
commit 7ab683d29a
22 changed files with 48 additions and 41 deletions

View File

@@ -8732,7 +8732,7 @@ FormatSDLTitle(
* Purpose:
*
******************************************************************************/
static int
static void
SetGhostLink(
_DtCvLinkDb link_data,
_DtCvSegment *segments,

View File

@@ -2916,6 +2916,7 @@ size_t _DtGrRead(
return (num_items);
}
}
return 0;
}
/******************************************************************************
@@ -2969,6 +2970,7 @@ int _DtGrSeek(
else
return(-1); /* Failure */
}
return -1;
}
/******************************************************************************
@@ -2997,6 +2999,7 @@ int _DtGrGetChar(
else
return ((unsigned char) *(stream->source.buffer.current++));
}
return EOF;
}
/******************************************************************************
@@ -3058,4 +3061,5 @@ char *_DtGrGetString(
*buffer = '\0';
return (save);
}
return NULL;
}

View File

@@ -379,7 +379,7 @@ SkipOtherLines(
* Function: CheckAndSwitchPoints
*
*****************************************************************************/
static int
static void
CheckAndSwitchPoints(
_DtCvSelectData *pt1,
_DtCvSelectData *pt2)

View File

@@ -1364,4 +1364,5 @@ ilError error;
} /* END while true: execute strips */
} /* END switch pipe state */
return IL_EXECUTE_AGAIN;
}