summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2011-04-03 20:00:20 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2011-04-03 20:00:20 (GMT)
commitf79c1beb0552e65ea138ef8edd34e265d8062ee0 (patch)
tree067138cdaf4f30b05abfd44bafe5f9673db30085 /src
parenta905ff3273e553f619bd3e1615d909c57ea374fa (diff)
downloadmxe-f79c1beb0552e65ea138ef8edd34e265d8062ee0.zip
mxe-f79c1beb0552e65ea138ef8edd34e265d8062ee0.tar.gz
mxe-f79c1beb0552e65ea138ef8edd34e265d8062ee0.tar.bz2
improved test program for package libass
Diffstat (limited to 'src')
-rw-r--r--src/libass-test.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/libass-test.c b/src/libass-test.c
index 3f09044..ba847a5 100644
--- a/src/libass-test.c
+++ b/src/libass-test.c
@@ -3,9 +3,15 @@
#include <ass/ass.h>
-int main(void)
+int main(int argc, char *argv[])
{
- ASS_Library *handle = ass_library_init();
+ ASS_Library *handle;
+
+ (void)argc;
+ (void)argv;
+
+ handle = ass_library_init();
ass_library_done(handle);
+
return 0;
}