Merge pull request #8104 from avdv/graphml-use-long-for-narsize
nix-store: Use `long` for `narSize` in graphml output
This commit is contained in:
commit
2523448bad
|
@ -57,7 +57,7 @@ void printGraphML(ref<Store> store, StorePathSet && roots)
|
||||||
<< "<graphml xmlns='http://graphml.graphdrawing.org/xmlns'\n"
|
<< "<graphml xmlns='http://graphml.graphdrawing.org/xmlns'\n"
|
||||||
<< " xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'\n"
|
<< " xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'\n"
|
||||||
<< " xsi:schemaLocation='http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd'>\n"
|
<< " xsi:schemaLocation='http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd'>\n"
|
||||||
<< "<key id='narSize' for='node' attr.name='narSize' attr.type='int'/>"
|
<< "<key id='narSize' for='node' attr.name='narSize' attr.type='long'/>"
|
||||||
<< "<key id='name' for='node' attr.name='name' attr.type='string'/>"
|
<< "<key id='name' for='node' attr.name='name' attr.type='string'/>"
|
||||||
<< "<key id='type' for='node' attr.name='type' attr.type='string'/>"
|
<< "<key id='type' for='node' attr.name='type' attr.type='string'/>"
|
||||||
<< "<graph id='G' edgedefault='directed'>\n";
|
<< "<graph id='G' edgedefault='directed'>\n";
|
||||||
|
|
Loading…
Reference in a new issue