summaryrefslogtreecommitdiff
path: root/tools/gccabicheck
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-09-28 17:52:13 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-09-28 17:52:13 -0400
commitd84a794b302cbf396810dd412420830d0712cf2c (patch)
treeae2842b4fe432c07d589861b006c1f2b91c8fbe6 /tools/gccabicheck
parent621fd845e6351f01dd328e38d90916abaf437dc1 (diff)
fix const-ness
Diffstat (limited to 'tools/gccabicheck')
-rw-r--r--tools/gccabicheck/abicheck.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gccabicheck/abicheck.c b/tools/gccabicheck/abicheck.c
index 9c9b6b4e0b..3267bf2c1a 100644
--- a/tools/gccabicheck/abicheck.c
+++ b/tools/gccabicheck/abicheck.c
@@ -44,7 +44,7 @@ int main (int argc, char **argv) {
int error_fail = 0;
int verbose = 0;
- char *glibmm = "libglibmm-2.4.so";
+ char const * glibmm = "libglibmm-2.4.so";
const struct option long_options[] = {
{ "fail", no_argument, 0, 'f' },