Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
b35024de
Commit
b35024de
authored
Nov 27, 2000
by
Niels Möller
Browse files
* src/argp/argp-test.c (asprintf): Bug fix.
Rev: src/argp/argp-test.c:1.4
parent
ea20b6b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/argp/argp-test.c
View file @
b35024de
...
...
@@ -65,7 +65,7 @@ asprintf (char **result, const char *format, ...)
p
[
size
]
=
'\0'
;
va_start
(
args
,
format
);
written
=
vsnprintf
(
p
,
format
,
size
,
args
);
written
=
vsnprintf
(
p
,
size
,
format
,
args
);
va_end
(
args
);
if
(
written
>=
0
)
...
...
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