Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
fcb0768e
Commit
fcb0768e
authored
Jul 21, 2014
by
Howard Chu
Browse files
Silence prototype warnings
parent
204637b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/liblmdb/mdb_load.c
View file @
fcb0768e
...
...
@@ -66,7 +66,7 @@ flagbit dbflags[] = {
static
const
char
hexc
[]
=
"0123456789abcdef"
;
static
void
readhdr
()
static
void
readhdr
(
void
)
{
char
*
ptr
;
...
...
@@ -155,7 +155,7 @@ static void readhdr()
}
}
static
void
badend
()
static
void
badend
(
void
)
{
fprintf
(
stderr
,
"%s: line %"
Z
"d: unexpected end of input
\n
"
,
prog
,
lineno
);
...
...
@@ -274,7 +274,7 @@ badend:
return
0
;
}
static
void
usage
()
static
void
usage
(
void
)
{
fprintf
(
stderr
,
"usage: %s dbpath [-V] [-f input] [-n] [-s name] [-N] [-T]
\n
"
,
prog
);
exit
(
EXIT_FAILURE
);
...
...
@@ -294,7 +294,7 @@ int main(int argc, char *argv[])
prog
=
argv
[
0
];
if
(
argc
<
2
)
{
usage
(
prog
);
usage
();
}
/* -f: load file instead of stdin
...
...
@@ -330,12 +330,12 @@ int main(int argc, char *argv[])
mode
|=
NOHDR
;
break
;
default:
usage
(
prog
);
usage
();
}
}
if
(
optind
!=
argc
-
1
)
usage
(
prog
);
usage
();
dbuf
.
mv_size
=
4096
;
dbuf
.
mv_data
=
malloc
(
dbuf
.
mv_size
);
...
...
Write
Preview
Supports
Markdown
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