> static inline void strsrip_tail(char *str) > { > char *x __used; > x = strstrip(str); > } Bikeshed time but its cleaner to do static inline __must_check void strstrip(char *str) { return strim(str); } and make strim() the old strstrip function without the check requirement Alan -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html