Commit 34a55d15 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix make_URI documentation

parent 65ede56b
...@@ -1047,7 +1047,11 @@ void path_sanitize( char *str ) ...@@ -1047,7 +1047,11 @@ void path_sanitize( char *str )
#include <vlc_url.h> #include <vlc_url.h>
/** /**
* Convert a file path to an URI. If already an URI, do nothing. * Convert a file path to an URI.
* If already an URI, return a copy of the string.
* @path path path to convert (or URI to copy)
* @return a nul-terminated URI string (use free() to release it),
* or NULL in case of error
*/ */
char *make_URI (const char *path) char *make_URI (const char *path)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment