summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodger Combs <rodger.combs@gmail.com>2014-04-26 23:07:09 -0500
committerRodger Combs <rodger.combs@gmail.com>2014-04-26 23:07:09 -0500
commit9d58b3b81e38268d4c5a9a5ddc45724e2e6814aa (patch)
tree792d4514dcb3afe902215c907f718a1fc252759c
parent04559ce6ac1b2b19b9b5d42fec1272246d805591 (diff)
downloadlibass-9d58b3b81e38268d4c5a9a5ddc45724e2e6814aa.tar.bz2
libass-9d58b3b81e38268d4c5a9a5ddc45724e2e6814aa.tar.xz
Fixed headers in profile and test
-rw-r--r--profile/profile.c2
-rw-r--r--test/test.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/profile/profile.c b/profile/profile.c
index 749c331..da57214 100644
--- a/profile/profile.c
+++ b/profile/profile.c
@@ -21,7 +21,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
-#include <ass.h>
+#include "../libass/ass.h"
typedef struct image_s {
int width, height, stride;
diff --git a/test/test.c b/test/test.c
index 6a6d8fb..f533e7a 100644
--- a/test/test.c
+++ b/test/test.c
@@ -20,7 +20,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
-#include <ass.h>
+#include <string.h>
+#include "../libass/ass.h"
#include <png.h>
typedef struct image_s {