Add newlines to help text for dfflegalize
authorRupert Swarbrick <rswarbrick@gmail.com>
Fri, 3 Jul 2020 10:12:03 +0000 (11:12 +0100)
committerMarcelina Koƛcielnicka <mwk@0x04.net>
Fri, 3 Jul 2020 10:30:12 +0000 (12:30 +0200)
commita9b61080a409d3ad2c8ff4a9bbef9ba1c9c1d194
tree34dff22ba5027de6938612e7a1ed6501feabeb8e
parent3d8d98d7093aa92f858a98d21a82cd453d8481dc
Add newlines to help text for dfflegalize

I think these were probably missed by accident. Spotted because GCC
spits out lots of messages like this:

passes/techmap/dfflegalize.cc:114:7: warning: zero-length gnu_printf format string [-Wformat-zero-length]
  114 |   log("");
      |       ^~

(because we tell GCC that the first argument to log() looks like a
printf control string in log.h, and a zero length such string triggers
a warning).
passes/techmap/dfflegalize.cc