diff options
author | Rong Xu <xur@google.com> | 2014-07-11 17:02:18 +0000 |
---|---|---|
committer | Rong Xu <xur@gcc.gnu.org> | 2014-07-11 17:02:18 +0000 |
commit | d5313205efe7b750614a237fca070f2479787c0b (patch) | |
tree | 9ef7ce01282d9129a8c17231b65c9cad283d6b7f /libgcc/libgcov-util.c | |
parent | 68f6800408091b9f6425d009d6eedc6f86d66a4c (diff) | |
download | gcc-d5313205efe7b750614a237fca070f2479787c0b.zip gcc-d5313205efe7b750614a237fca070f2479787c0b.tar.gz gcc-d5313205efe7b750614a237fca070f2479787c0b.tar.bz2 |
libgcov-util.c (gcov_max_filename): Fix declartion.
2014-07-11 Rong Xu <xur@google.com>
* libgcov-util.c (gcov_max_filename): Fix declartion.
From-SVN: r212463
Diffstat (limited to 'libgcc/libgcov-util.c')
-rw-r--r-- | libgcc/libgcov-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgcc/libgcov-util.c b/libgcc/libgcov-util.c index 6dddec5..fc67979 100644 --- a/libgcc/libgcov-util.c +++ b/libgcc/libgcov-util.c @@ -38,7 +38,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see extern gcov_position_t gcov_position(); extern int gcov_is_error(); -extern gcov_unsigned_t gcov_max_filename; +extern size_t gcov_max_filename; /* Verbose mode for debug. */ static int verbose; |