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:
Dirk Hohndel 2014-12-28 06:51:28 -08:00
parent eab52183a8
commit 542ff7fc36

View file

@ -2586,6 +2586,7 @@ int parse_dlf_buffer(char *buffer, size_t size)
ptr += 16;
}
dive_end();
return 0;
}