Skip to content

Commit 326bf73

Browse files
committed
Fixed #3523: Using relative path for #include
1 parent 1747c8f commit 326bf73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/plugins/plugin.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ janus_plugin *create(void) {
159159

160160
#include <glib.h>
161161

162-
#include "refcount.h"
162+
#include "../refcount.h"
163163

164164

165165
/*! \brief Version of the API, to match the one plugins were compiled against

src/transports/transport.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ janus_transport *create(void) {
9393
#include <glib.h>
9494
#include <jansson.h>
9595

96-
#include "refcount.h"
96+
#include "../refcount.h"
9797

9898

9999
/*! \brief Version of the API, to match the one transport plugins were compiled against */

0 commit comments

Comments
 (0)