diff options
author | ANAND <ClobberXD@gmail.com> | 2019-04-09 00:10:02 +0530 |
---|---|---|
committer | Paramat <paramat@users.noreply.github.com> | 2019-04-08 19:40:02 +0100 |
commit | 8306f7d2e201f7b7ff5d6d469abf31bff148286d (patch) | |
tree | fabffb6663e008652a377e02aef4804e4e671522 /src/util | |
parent | 0cc85a7dc6d7840c47dbd9a9193f5eaaee10dad3 (diff) | |
download | minetest-8306f7d2e201f7b7ff5d6d469abf31bff148286d.tar.gz minetest-8306f7d2e201f7b7ff5d6d469abf31bff148286d.tar.bz2 minetest-8306f7d2e201f7b7ff5d6d469abf31bff148286d.zip |
util/hex.h: Remove whitespace-only line (#8460)
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/hex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/hex.h b/src/util/hex.h index 31bcaa2ba..708f33024 100644 --- a/src/util/hex.h +++ b/src/util/hex.h @@ -27,7 +27,7 @@ static inline std::string hex_encode(const char *data, unsigned int data_size) { std::string ret; ret.reserve(data_size * 2); - + char buf2[3]; buf2[2] = '\0'; |