Mentions légales du service

Skip to content
Snippets Groups Projects
Commit fe302edf authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

debug/trace: Fix the incorrect vasprintf call

parent 8b2bd36a
No related branches found
No related tags found
1 merge request!392Map Function: Add an access parameter to be able to generate data out of this function.
......@@ -127,7 +127,7 @@ static inline int chameleon_asprintf( char **strp, const char *fmt, ... )
int rc;
va_start( ap, fmt );
rc = asprintf( strp, fmt, ap );
rc = vasprintf( strp, fmt, ap );
va_end( ap );
assert( rc != -1 );
......
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