summaryrefslogtreecommitdiff
path: root/rts/ProfHeap.h
diff options
context:
space:
mode:
authorBen Gamari <bgamari.foss@gmail.com>2015-11-21 15:48:09 +0100
committerBen Gamari <ben@smart-cactus.org>2015-11-21 15:48:09 +0100
commitd585073d582d82fae80781dc23176b1ef59527a9 (patch)
treec5239a1dd8e64450aa8ac412edd94fe5c31f5095 /rts/ProfHeap.h
parent7f77e4e9b301493db0782cf2d129cf62dbcd5af6 (diff)
downloadhaskell-d585073d582d82fae80781dc23176b1ef59527a9.tar.gz
RtsFlags: Fix const warning
Reviewers: austin Reviewed By: austin Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D1509
Diffstat (limited to 'rts/ProfHeap.h')
-rw-r--r--rts/ProfHeap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/ProfHeap.h b/rts/ProfHeap.h
index b3bed903b5..e29a9f6974 100644
--- a/rts/ProfHeap.h
+++ b/rts/ProfHeap.h
@@ -14,7 +14,7 @@
void heapCensus (Time t);
nat initHeapProfiling (void);
void endHeapProfiling (void);
-rtsBool strMatchesSelector (char* str, char* sel);
+rtsBool strMatchesSelector (const char* str, const char* sel);
#include "EndPrivate.h"