diff options
author | James Booth <boothj5@gmail.com> | 2016-07-24 15:43:51 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-07-24 15:43:51 +0100 |
commit | 0a57c4de78f8a3cd4efb631a79b000b42f16fc15 (patch) | |
tree | 39b0597b73f42f018b0006a1816cd76f56213e64 /src/tools | |
parent | 5bc38b6bc2bdf135d7f483c204ce75a51a7126b5 (diff) | |
download | profani-tty-0a57c4de78f8a3cd4efb631a79b000b42f16fc15.tar.gz |
Tidy headers
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/http_upload.c | 6 | ||||
-rw-r--r-- | src/tools/http_upload.h | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/tools/http_upload.c b/src/tools/http_upload.c index 835618ca..80b46c87 100644 --- a/src/tools/http_upload.c +++ b/src/tools/http_upload.c @@ -45,11 +45,11 @@ #include <assert.h> #include "profanity.h" -#include "ui/ui.h" -#include "ui/window.h" -#include "tools/http_upload.h" #include "event/client_events.h" +#include "tools/http_upload.h" #include "config/preferences.h" +#include "ui/ui.h" +#include "ui/window.h" #define FALLBACK_MIMETYPE "application/octet-stream" #define FALLBACK_CONTENTTYPE_HEADER "Content-Type: application/octet-stream" diff --git a/src/tools/http_upload.h b/src/tools/http_upload.h index e3d6cb8a..217c1321 100644 --- a/src/tools/http_upload.h +++ b/src/tools/http_upload.h @@ -41,6 +41,7 @@ #include <sys/select.h> #include <curl/curl.h> + #include "ui/win_types.h" typedef struct http_upload_t { |