Fix two instances of integer-assignment to string.
authorHenner Zeller <h.zeller@acm.org>
Wed, 15 May 2019 05:01:15 +0000 (22:01 -0700)
committerHenner Zeller <h.zeller@acm.org>
Wed, 15 May 2019 05:01:15 +0000 (22:01 -0700)
commit5e443a5d0db8f517582818e756871ec2e8117dbe
tree5886cacde23aaa6adb7497267eb450c29d895383
parentc8c1df23a0ddf85b6d5a822299634b42b82a6e15
Fix two instances of integer-assignment to string.

o In cover.cc, the int-result of mkstemps() was assigned to a string
  and silently interpreted as a single-character filename with a funny
  value. Fix with the intent: assign the filename.
o in libparse.cc, an int was assigned to a string, but depending on
  visible constructors, this is ambiguous. Explicitly cast this to
  a char.
passes/cmds/cover.cc
passes/techmap/libparse.cc