aboutsummaryrefslogtreecommitdiff
path: root/tests/unittests
diff options
context:
space:
mode:
authorJon Simons <jon@jonsimons.org>2017-07-11 17:10:26 -0400
committerAndreas Schneider <asn@cryptomilk.org>2017-07-13 19:32:35 +0200
commiteffd7ba13cd0a7ec9e7087e883bfffb85df8d9a3 (patch)
treeb0e66264984be1786935e301e3b32b15acf3d70e /tests/unittests
parenta64ddff3fe16f938b99130d2a4928cda33cfcd36 (diff)
downloadlibssh-effd7ba13cd0a7ec9e7087e883bfffb85df8d9a3.tar.gz
libssh-effd7ba13cd0a7ec9e7087e883bfffb85df8d9a3.tar.xz
libssh-effd7ba13cd0a7ec9e7087e883bfffb85df8d9a3.zip
tests: torture-misc: fix 4-space indentation
Signed-off-by: Jon Simons <jon@jonsimons.org> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'tests/unittests')
-rw-r--r--tests/unittests/torture_misc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/unittests/torture_misc.c b/tests/unittests/torture_misc.c
index bc16dfb0..f2479a4b 100644
--- a/tests/unittests/torture_misc.c
+++ b/tests/unittests/torture_misc.c
@@ -87,11 +87,11 @@ static void torture_ntohll(void **state) {
(void) state;
if (ptr[0] == 1){
- /* we're in little endian */
- check = 0xefcdab8967452301;
+ /* we're in little endian */
+ check = 0xefcdab8967452301;
} else {
- /* big endian */
- check = value;
+ /* big endian */
+ check = value;
}
value = ntohll(value);
assert_true(value == check);