matrix-data: Only use as many bytes as necessary to initialize string.
authorBen Pfaff <blp@cs.stanford.edu>
Wed, 2 Jan 2019 22:46:11 +0000 (14:46 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Wed, 2 Jan 2019 22:50:14 +0000 (14:50 -0800)
Using strncpy() of a 9-character string to initialize an 8-byte field is
odd and seems likely to have been a mistake, although a harmless one.
This makes the situation seem less odd.

Found by GCC 4.9.


No differences found