This pre-emptively squashes several upcoming warnings when converting this file
to C++ which otherwise fail the CMake build:
cmd/tools/gvpack.cpp:270:42: error: ISO C++11 does not allow conversion from
string literal to 'char *' [-Werror,-Wwritable-strings]
Gitlab: #2154
node_t *n;
edge_t *e;
int nG = agnnodes(g);
- attrsym_t *N_pos = agfindnodeattr(g, "pos");
- attrsym_t *N_pin = agfindnodeattr(g, "pin");
+ attrsym_t *N_pos = agfindnodeattr(g, (char*)"pos");
+ attrsym_t *N_pin = agfindnodeattr(g, (char*)"pin");
for (n = agfstnode(g); n; n = agnxtnode(g, n)) {
neato_init_node(n);