From: Chris AtLee Date: Fri, 22 Jul 2011 18:27:06 +0000 (-0400) Subject: Fix comment style X-Git-Tag: v3.2~178^2~4^2~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=518332ec26d24c254cba80f33f624a7fa2e6762a;p=thirdparty%2Fccache.git Fix comment style --- diff --git a/ccache.c b/ccache.c index ef085aaec..ab5573fbf 100644 --- 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"); } }