mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Fix compiler warning: parse_dlf_buffer needs to return 0 on success
Simply running off the end of a non-void function isn't nice. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
eab52183a8
commit
542ff7fc36
1 changed files with 1 additions and 0 deletions
|
@ -2586,6 +2586,7 @@ int parse_dlf_buffer(char *buffer, size_t size)
|
|||
ptr += 16;
|
||||
}
|
||||
dive_end();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue