aboutsummaryrefslogtreecommitdiffstats
path: root/src/zswap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/zswap.c')
-rw-r--r--src/zswap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zswap.c b/src/zswap.c
index b9a1325..452d712 100644
--- a/src/zswap.c
+++ b/src/zswap.c
@@ -1,5 +1,5 @@
/* See LICENSE file for copyright and license details. */
-#include "internals"
+#include "internals.h"
void
@@ -8,5 +8,5 @@ zswap(z_t a, z_t b)
z_t t;
*t = *a;
*a = *b;
- *b = t;
+ *b = *t;
}