mirror of
https://github.com/mpv-player/mpv
synced 2024-12-25 00:02:13 +00:00
Fix warnings:
cs_test.c:62: warning: return type defaults to 'int' cs_test.c:64: warning: implicit declaration of function 'memalign' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20036 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
b723519b55
commit
04acb4f27e
@ -21,6 +21,7 @@
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
#include <inttypes.h>
|
||||
#include <malloc.h>
|
||||
|
||||
#include "swscale.h"
|
||||
#include "rgb2rgb.h"
|
||||
@ -58,7 +59,7 @@ static char *args_parse(int argc, char *argv[])
|
||||
return argv[optind];
|
||||
}
|
||||
|
||||
main(int argc, char **argv)
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
int i, funcNum;
|
||||
uint8_t *srcBuffer= (uint8_t*)memalign(128, SIZE);
|
||||
|
Loading…
Reference in New Issue
Block a user