diff options
Diffstat (limited to 'tests/framework.h')
-rw-r--r-- | tests/framework.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/framework.h b/tests/framework.h index aefdef2..c9170b6 100644 --- a/tests/framework.h +++ b/tests/framework.h @@ -153,8 +153,8 @@ char *mock_size(size_t size, const char *fill_byte) { char *mock_image(int img_type, const char *img_name, char **_extra_compiler_args, int *exit_code) { char libsuffix[10] = {0,}; char code[255] = {0,}; - char code_filename[FILENAME_MAX] = {0,}; - char img_filename[FILENAME_MAX] = {0,}; + char code_filename[255] = {0,}; + char img_filename[255] = {0,}; char cmd[PATH_MAX] = {0,}; char *extra_compiler_args = NULL; Process *proc = NULL; |