]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Use C89-style comments
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 11 Aug 2012 09:01:34 +0000 (11:01 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 11 Aug 2012 09:01:34 +0000 (11:01 +0200)
test/test_hashutil.c

index 4a72d8491304dcf50e44d5b0b57e68933d845302..6ee9d4b8286d3f49b84598349b6840d629883df4 100644 (file)
@@ -160,7 +160,7 @@ TEST(hash_source_code_with_comment_inside_string)
 TEST(hash_source_code_with_quote_in_string)
 {
        struct mdfour h;
-       char input[] = "a\"\\\"b//c\""; // a"\"b//c"
+       char input[] = "a\"\\\"b//c\""; /* a"\"b//c" */
        size_t input_len = strlen(input);
 
        hash_start(&h);
@@ -176,7 +176,7 @@ TEST(hash_source_code_with_quote_in_string)
 TEST(hash_source_code_with_backslash_at_string_end)
 {
        struct mdfour h;
-       char input[] = "a\"\\\\\"b//c"; // a"\\"b//c
+       char input[] = "a\"\\\\\"b//c"; /* a"\\"b//c */
        size_t input_len = strlen(input);
 
        hash_start(&h);