Fix mg_prefix test

This commit is contained in:
Sergey Lyubka 2021-07-26 09:26:22 +01:00
parent bdb747f9de
commit 53ee984eb7
2 changed files with 4 additions and 4 deletions

View File

@ -417,8 +417,8 @@ struct packed_file {
size_t pos;
};
const char *unpack(const char *, size_t *) WEAK;
const char *unpack(const char *path, size_t *size) {
const char *mg_unpack(const char *, size_t *) WEAK;
const char *mg_unpack(const char *path, size_t *size) {
(void) path, (void) size;
return NULL;
}

View File

@ -6,8 +6,8 @@ struct packed_file {
size_t pos;
};
const char *unpack(const char *, size_t *) WEAK;
const char *unpack(const char *path, size_t *size) {
const char *mg_unpack(const char *, size_t *) WEAK;
const char *mg_unpack(const char *path, size_t *size) {
(void) path, (void) size;
return NULL;
}