Browse Source

gen: fixup unescaped \n in printwire declaration for tlvs

pr-2587
lisa neigut 6 years ago
committed by Rusty Russell
parent
commit
97b938a469
  1. 2
      tools/generate-wire.py

2
tools/generate-wire.py

@ -1428,7 +1428,7 @@ print_master_tlv_template = """
void print_tlv_message(const char *tlv_name, const u8 *msg)
{{
\t{tlv_switches}
\tprintf("ERR: Unknown TLV message type: %s\n", tlv_name);
\tprintf("ERR: Unknown TLV message type: %s\\n", tlv_name);
}}
"""

Loading…
Cancel
Save