Is the problem that eg you get (indentation removed for readability): -int (*unknown)(char *param, char *val, const char *doing)) +void *arg,int (*unknown)(char *param, char *val, const char *doing, void *arg))
instead of -int (*unknown)(char *param, char *val, const char *doing)) +void *arg, +int (*unknown)(char *param, char *val, + const char *doing, void *arg)) I think that the problem is that Coccinelle does not try to respect 80 columns when there are nested parentheses. But it seems like it could be possible to at least have the declaration of unknown moved to the next line. julia _______________________________________________ Cocci mailing list [email protected] https://systeme.lip6.fr/mailman/listinfo/cocci
