handle missing return values
This commit is contained in:
@@ -8732,7 +8732,7 @@ FormatSDLTitle(
|
||||
* Purpose:
|
||||
*
|
||||
******************************************************************************/
|
||||
static int
|
||||
static void
|
||||
SetGhostLink(
|
||||
_DtCvLinkDb link_data,
|
||||
_DtCvSegment *segments,
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -379,7 +379,7 @@ SkipOtherLines(
|
||||
* Function: CheckAndSwitchPoints
|
||||
*
|
||||
*****************************************************************************/
|
||||
static int
|
||||
static void
|
||||
CheckAndSwitchPoints(
|
||||
_DtCvSelectData *pt1,
|
||||
_DtCvSelectData *pt2)
|
||||
|
||||
@@ -1364,4 +1364,5 @@ ilError error;
|
||||
|
||||
} /* END while true: execute strips */
|
||||
} /* END switch pipe state */
|
||||
return IL_EXECUTE_AGAIN;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user