diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-11-01 16:48:53 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-11-01 16:48:53 (EDT) |
commit | be2b8524ce031be2befc08f4f42f19c92ad85db4 (patch) | |
tree | a401077aa2d88a77d314bc4f9f44a0c47c8a902f /src/schemes/about | |
parent | 8ba5c21b1d01ccafa071f2bcf94127175d5f461a (diff) | |
download | marquee-be2b8524ce031be2befc08f4f42f19c92ad85db4.zip marquee-be2b8524ce031be2befc08f4f42f19c92ad85db4.tar.gz marquee-be2b8524ce031be2befc08f4f42f19c92ad85db4.tar.bz2 |
about:marquee: Fix #include
Surprisingly, this was the error, instead of a fatal error about not
finding "../paths.h":
CC src/schemes/about/marquee-marquee.o
src/schemes/about/marquee.c:58:1: warning: no previous prototype for ‘mq_about_marquee_response’ [-Wmissing-prototypes]
mq_about_marquee_response(MqApplication *application, GHashTable *query,
^
Diffstat (limited to 'src/schemes/about')
-rw-r--r-- | src/schemes/about/marquee.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/schemes/about/marquee.c b/src/schemes/about/marquee.c index 1ecbe08..4ab101f 100644 --- a/src/schemes/about/marquee.c +++ b/src/schemes/about/marquee.c @@ -24,7 +24,7 @@ #include "../../application.h" #include "../about.h" -#include "../paths.h" +#include "paths.h" static const gchar *document = "<!doctype html>" |