Skip to content
Snippets Groups Projects
Commit 3f7cfeea authored by Mike Frysinger's avatar Mike Frysinger Committed by Wolfgang Denk
Browse files

ext2: constify file/dir names

parent 32ff4b7f
No related branches found
No related tags found
No related merge requests found
......@@ -749,7 +749,7 @@ int ext2fs_find_file
}
int ext2fs_ls (char *dirname) {
int ext2fs_ls (const char *dirname) {
ext2fs_node_t dirnode;
int status;
......@@ -769,7 +769,7 @@ int ext2fs_ls (char *dirname) {
}
int ext2fs_open (char *filename) {
int ext2fs_open (const char *filename) {
ext2fs_node_t fdiro = NULL;
int status;
int len;
......
......@@ -74,8 +74,8 @@ typedef enum
extern int ext2fs_set_blk_dev(block_dev_desc_t *rbdd, int part);
extern int ext2fs_ls (char *dirname);
extern int ext2fs_open (char *filename);
extern int ext2fs_ls (const char *dirname);
extern int ext2fs_open (const char *filename);
extern int ext2fs_read (char *buf, unsigned len);
extern int ext2fs_mount (unsigned part_length);
extern int ext2fs_close(void);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment