On 6/17/19 10:42 PM, Chaitanya Kulkarni wrote:
+ if (strcmp(op_str, "UNKNOWN") == 0) seq_printf(m, "%d", op); + else + seq_printf(m, "%s", op_str);
My opinion about using strcmp() to check whether or not req_opf-to-string conversion succeeded is that this is ugly ...
Bart.