Skip to content

Commit

Permalink
Style nit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Themaister committed Nov 3, 2011
1 parent a6f7a23 commit 389e9ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion file.c
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ bool init_rom_file(enum ssnes_game_type type)
}

// Yep, this is C alright ;)
char** dir_list_new(const char *dir, const char *ext)
char **dir_list_new(const char *dir, const char *ext)
{
size_t cur_ptr = 0;
size_t cur_size = 32;
Expand Down
2 changes: 1 addition & 1 deletion file.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ bool init_rom_file(enum ssnes_game_type type);
// Returns a NULL-terminated list of files in a directory with full paths.
// If ext is NULL, any file will be picked.
// If non-NULL, only files with extension ext are added.
char** dir_list_new(const char *dir, const char *ext);
char **dir_list_new(const char *dir, const char *ext);
void dir_list_free(char **dir_list);

bool path_is_directory(const char *path);
Expand Down

0 comments on commit 389e9ba

Please sign in to comment.