From 94f133f25bce7e9d354ea4d31c96b5635900d292 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 14 Aug 2012 18:21:05 +0100 Subject: [PATCH] Remove unnecessary comment from . Read guestfs(3) for documentation, and don't discourage people from doing that by putting these comments into the header file. --- generator/generator_c.ml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/generator/generator_c.ml b/generator/generator_c.ml index 859c31bc0..936447b92 100644 --- a/generator/generator_c.ml +++ b/generator/generator_c.ml @@ -620,12 +620,7 @@ extern GUESTFS_DLL_PUBLIC void *guestfs_next_private (guestfs_h *g, const char * let uc_shortname = String.uppercase shortname in let n = name_of_optargt argt in let uc_n = String.uppercase n in - pr "\n"; pr "# define GUESTFS_%s_%s_BITMASK (UINT64_C(1)<<%d)\n" uc_shortname uc_n i; - pr " /* The field below is only valid in this struct if the\n"; - pr " * GUESTFS_%s_%s_BITMASK bit is set\n" uc_shortname uc_n; - pr " * in the bitmask above. If not, the field is ignored.\n"; - pr " */\n"; pr " %s%s;\n" c_type n ) optargs; pr "};\n";