Fixed declaration going with previous commit

This commit is contained in:
Celine Mercier
2018-10-31 18:01:04 +01:00
parent c7ff53b948
commit 8a8e9e50b2

View File

@ -103,13 +103,14 @@ static bool view_exists(OBIDMS_p dms, const char* view_name);
* @param dms The DMS.
* @param view_name The name of the view.
*
* @returns A boolean value indicating whether the view is finished or not.
* @retval 1 if the view is finished.
* @retval 0 if the view is not finished.
* @retval -1 if the view does not exist or if an error occurred.
*
* @since October 2018
* @author Celine Mercier (celine.mercier@metabarcoding.org)
*/
static bool view_is_finished(OBIDMS_p dms, const char* view_name);
static int view_is_finished(OBIDMS_p dms, const char* view_name);
/**