Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
u-boot-2015.04
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vesta
u-boot-2015.04
Commits
3f7cfeea
Commit
3f7cfeea
authored
14 years ago
by
Mike Frysinger
Committed by
Wolfgang Denk
14 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ext2: constify file/dir names
Signed-off-by:
Mike Frysinger
<
vapier@gentoo.org
>
parent
32ff4b7f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
fs/ext2/ext2fs.c
+2
-2
2 additions, 2 deletions
fs/ext2/ext2fs.c
include/ext2fs.h
+2
-2
2 additions, 2 deletions
include/ext2fs.h
with
4 additions
and
4 deletions
fs/ext2/ext2fs.c
+
2
−
2
View file @
3f7cfeea
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
include/ext2fs.h
+
2
−
2
View file @
3f7cfeea
...
...
@@ -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
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment