From 7931a6013587160a6f83f044677dfc08671bff65 Mon Sep 17 00:00:00 2001
From: Ralph Giles <giles@thaumas.net>
Date: Fri, 28 Oct 2011 11:29:41 -0700
Subject: [PATCH] Remove relative paths to opus.h.

Files are already compiled with -I./include, the relative
path in the #include line isn't necessary.
---
 tests/test_opus_api.c    | 2 +-
 tests/test_opus_decode.c | 2 +-
 tests/test_opus_encode.c | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/test_opus_api.c b/tests/test_opus_api.c
index 395bfb42d..dbfcedfef 100644
--- a/tests/test_opus_api.c
+++ b/tests/test_opus_api.c
@@ -50,7 +50,7 @@
 #include <stdint.h>
 #include <string.h>
 #include "arch.h"
-#include "../include/opus.h"
+#include "opus.h"
 #include "test_opus_common.h"
 
 #ifdef VALGRIND
diff --git a/tests/test_opus_decode.c b/tests/test_opus_decode.c
index 605e4f990..503a863b8 100644
--- a/tests/test_opus_decode.c
+++ b/tests/test_opus_decode.c
@@ -37,7 +37,7 @@
 #include <string.h>
 #include <time.h>
 #include <unistd.h>
-#include "../include/opus.h"
+#include "opus.h"
 #include "test_opus_common.h"
 
 #define MAX_PACKET (1500)
diff --git a/tests/test_opus_encode.c b/tests/test_opus_encode.c
index 1e031e77c..ba080b405 100644
--- a/tests/test_opus_encode.c
+++ b/tests/test_opus_encode.c
@@ -37,7 +37,7 @@
 #include <string.h>
 #include <time.h>
 #include <unistd.h>
-#include "../include/opus.h"
+#include "opus.h"
 #include "../src/opus_private.h"
 #include "test_opus_common.h"
 
-- 
GitLab