]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Fix comment style
authorChris AtLee <catlee@mozilla.com>
Fri, 22 Jul 2011 18:27:06 +0000 (14:27 -0400)
committerChris AtLee <catlee@mozilla.com>
Fri, 22 Jul 2011 18:27:06 +0000 (14:27 -0400)
ccache.c

index ef085aaec12f94ef74321409ccddd14c7c9007eb..ab5573fbfa2b9438667d4f199727425192abdda4 100644 (file)
--- a/ccache.c
+++ b/ccache.c
@@ -1018,13 +1018,13 @@ calculate_object_hash(struct args *args, struct mdfour *hash, int direct_mode)
                hash_string(hash, args->argv[i]);
 
                if (str_eq(args->argv[i], "-fprofile-use")) {
-                       // Calculate gcda name
+                       /* Calculate gcda name */
                        base_name = remove_extension(output_obj);
                        gcda_name = format("%s.gcda", base_name);
                        free(base_name);
-                       // Add the gcda to our hash
+                       /* Add the gcda to our hash */
                        if (!hash_file(hash, gcda_name)) {
-                               // If it doesn't exist, add some null data
+                               /* If it doesn't exist, add some null data */
                                hash_string(hash, "no data");
                        }
                }