Use spaces for indentation, not tabs.
[gnulib.git] / tests / uninorm / test-u32-nfkd-big.c
index e7c1b4f..0da9be8 100644 (file)
@@ -42,8 +42,8 @@ check (const uint32_t *c1, size_t c1_length,
 
     result = u32_normalize (UNINORM_NFKD, c1, c1_length, NULL, &length);
     if (!(result != NULL
-         && length == c5_length
-         && u32_cmp (result, c5, c5_length) == 0))
+          && length == c5_length
+          && u32_cmp (result, c5, c5_length) == 0))
       return 1;
     free (result);
   }
@@ -53,8 +53,8 @@ check (const uint32_t *c1, size_t c1_length,
 
     result = u32_normalize (UNINORM_NFKD, c2, c2_length, NULL, &length);
     if (!(result != NULL
-         && length == c5_length
-         && u32_cmp (result, c5, c5_length) == 0))
+          && length == c5_length
+          && u32_cmp (result, c5, c5_length) == 0))
       return 2;
     free (result);
   }
@@ -64,8 +64,8 @@ check (const uint32_t *c1, size_t c1_length,
 
     result = u32_normalize (UNINORM_NFKD, c3, c3_length, NULL, &length);
     if (!(result != NULL
-         && length == c5_length
-         && u32_cmp (result, c5, c5_length) == 0))
+          && length == c5_length
+          && u32_cmp (result, c5, c5_length) == 0))
       return 3;
     free (result);
   }
@@ -75,8 +75,8 @@ check (const uint32_t *c1, size_t c1_length,
 
     result = u32_normalize (UNINORM_NFKD, c4, c4_length, NULL, &length);
     if (!(result != NULL
-         && length == c5_length
-         && u32_cmp (result, c5, c5_length) == 0))
+          && length == c5_length
+          && u32_cmp (result, c5, c5_length) == 0))
       return 4;
     free (result);
   }
@@ -86,8 +86,8 @@ check (const uint32_t *c1, size_t c1_length,
 
     result = u32_normalize (UNINORM_NFKD, c5, c5_length, NULL, &length);
     if (!(result != NULL
-         && length == c5_length
-         && u32_cmp (result, c5, c5_length) == 0))
+          && length == c5_length
+          && u32_cmp (result, c5, c5_length) == 0))
       return 5;
     free (result);
   }