Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Sunxi Tools
Commits
0f34fc7a
Commit
0f34fc7a
authored
May 04, 2012
by
Alejandro Mery
Browse files
temporarily hide known unused-parameters warnings
parent
ebacb59a
Changes
2
Show whitespace changes
Inline
Side-by-side
bin2fex.c
View file @
0f34fc7a
...
@@ -141,7 +141,7 @@ static inline int decompile_single(struct script_section *section,
...
@@ -141,7 +141,7 @@ static inline int decompile_single(struct script_section *section,
/**
/**
*/
*/
static
int
decompile_section
(
void
*
bin
,
size_t
bin_size
,
static
int
decompile_section
(
void
*
bin
,
size_t
UNUSED
(
bin_size
)
,
struct
script_section
*
section
,
struct
script_section
*
section
,
FILE
*
out
)
FILE
*
out
)
{
{
...
...
fex2bin.c
View file @
0f34fc7a
...
@@ -54,7 +54,8 @@ static inline char *alltrim(char *s, size_t *l)
...
@@ -54,7 +54,8 @@ static inline char *alltrim(char *s, size_t *l)
/**
/**
*/
*/
static
int
parse_fex
(
FILE
*
in
,
const
char
*
filename
,
struct
script
*
script
)
static
int
parse_fex
(
FILE
*
in
,
const
char
*
UNUSED
(
filename
),
struct
script
*
UNUSED
(
script
))
{
{
char
buffer
[
MAX_LINE
+
1
];
char
buffer
[
MAX_LINE
+
1
];
int
ok
=
1
;
int
ok
=
1
;
...
@@ -66,6 +67,8 @@ static int parse_fex(FILE *in, const char *filename, struct script *script)
...
@@ -66,6 +67,8 @@ static int parse_fex(FILE *in, const char *filename, struct script *script)
fputs
(
p
,
stdout
);
fputs
(
p
,
stdout
);
fputc
(
'\n'
,
stdout
);
fputc
(
'\n'
,
stdout
);
(
void
)
col
;
};
};
if
(
ferror
(
in
))
if
(
ferror
(
in
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment