Commit 92d9e96b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Typo

parent ccb3a601
...@@ -123,7 +123,7 @@ void *vlc_memalign (void **pp, size_t align, size_t size) ...@@ -123,7 +123,7 @@ void *vlc_memalign (void **pp, size_t align, size_t size)
return NULL; return NULL;
align--; align--;
ptr = malloc (size + --align); ptr = malloc (size + align);
if (ptr == NULL) if (ptr == NULL)
return NULL; return NULL;
......
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