diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2018-02-06 13:27:35 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-02-06 14:21:16 -0500 |
commit | 4d1c3b72ec27c8e51fb40809bba3ce35246a2966 (patch) | |
tree | 8a50e7647223fbdbd670e1e2bf97f84cc74ffd9f /rts/Capability.c | |
parent | 1512b63347dff5aeae4a27d7421f7608cc43a196 (diff) | |
download | haskell-4d1c3b72ec27c8e51fb40809bba3ce35246a2966.tar.gz |
rts: Add format attribute to barf
Test Plan: Validate
Reviewers: erikd, simonmar
Reviewed By: simonmar
Subscribers: rwbarton, thomie, carter
Differential Revision: https://phabricator.haskell.org/D4374
Diffstat (limited to 'rts/Capability.c')
-rw-r--r-- | rts/Capability.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Capability.c b/rts/Capability.c index 0fcb0c99e1..03b2a86280 100644 --- a/rts/Capability.c +++ b/rts/Capability.c @@ -362,7 +362,7 @@ void initCapabilities (void) } n_numa_nodes = logical; if (logical == 0) { - barf("%s: available NUMA node set is empty"); + barf("available NUMA node set is empty"); } } |