diff options
author | Nathan Sidwell <nathan@acm.org> | 2016-10-14 10:51:58 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2016-10-14 10:51:58 +0000 |
commit | 74d2b9071b2a3fb1b5615b7db181661fd225bcc4 (patch) | |
tree | a5088053cee657ad4a185ebd8e25fe55c5b87d70 /gcc/gcov-io.c | |
parent | 14cf71a0df9c3f548052b752c7c1e2fd05fc7a8c (diff) | |
download | gcc-74d2b9071b2a3fb1b5615b7db181661fd225bcc4.zip gcc-74d2b9071b2a3fb1b5615b7db181661fd225bcc4.tar.gz gcc-74d2b9071b2a3fb1b5615b7db181661fd225bcc4.tar.bz2 |
* gcov-io.c (gcov_open): Deconstify 'mode'.
From-SVN: r241155
Diffstat (limited to 'gcc/gcov-io.c')
-rw-r--r-- | gcc/gcov-io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcov-io.c b/gcc/gcov-io.c index 1720d91..731c2cf 100644 --- a/gcc/gcov-io.c +++ b/gcc/gcov-io.c @@ -127,7 +127,7 @@ gcov_open (const char *name, int mode) #endif { #if IN_LIBGCOV - const int mode = 0; + int mode = 0; #endif #if GCOV_LOCKED struct flock s_flock; |