Repository: Fixed retrieve_device return type.

This commit is contained in:
Romain Geissler 2011-06-06 01:26:01 +02:00
parent 76e9e3b763
commit 5ec05d0748

View File

@ -330,7 +330,7 @@ static int abspath(char *buffer_out, size_t size, const char *path)
return GIT_SUCCESS;
}
static dev_t retrieve_device(dev_t *device_out, const char *path)
static int retrieve_device(dev_t *device_out, const char *path)
{
struct stat path_info;