aboutsummaryrefslogtreecommitdiff
path: root/c/enc/histogram.c
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas.ru@gmail.com>2021-09-08 09:18:45 +0200
committerGitHub <noreply@github.com>2021-09-08 09:18:45 +0200
commit62662f87cdd96deda90ac817de94e3c4af75226a (patch)
tree6052197cad3d5c40792f2acdc5b8521efd9f4b67 /c/enc/histogram.c
parent698e3a7f9d3000fa44174f5be415bf713f71bd0e (diff)
downloadbrotli-62662f87cdd96deda90ac817de94e3c4af75226a.zip
brotli-62662f87cdd96deda90ac817de94e3c4af75226a.tar.gz
brotli-62662f87cdd96deda90ac817de94e3c4af75226a.tar.bz2
Strip "./" in includes (#925)
Co-authored-by: Eugene Kliuchnikov <eustas@chromium.org>
Diffstat (limited to 'c/enc/histogram.c')
-rw-r--r--c/enc/histogram.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/enc/histogram.c b/c/enc/histogram.c
index 6da2ff6..8cb7610 100644
--- a/c/enc/histogram.c
+++ b/c/enc/histogram.c
@@ -6,11 +6,11 @@
/* Build per-context histograms of literals, commands and distance codes. */
-#include "./histogram.h"
+#include "histogram.h"
#include "../common/context.h"
-#include "./block_splitter.h"
-#include "./command.h"
+#include "block_splitter.h"
+#include "command.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {