diff options
Diffstat (limited to 'gprof/source.h')
-rw-r--r-- | gprof/source.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gprof/source.h b/gprof/source.h index ebdbb3b..b33bad3 100644 --- a/gprof/source.h +++ b/gprof/source.h @@ -9,7 +9,7 @@ typedef struct source_file { struct source_file *next; const char *name; /* name of source file */ - int ncalls; /* # of "calls" to this file */ + unsigned long ncalls; /* # of "calls" to this file */ int num_lines; /* # of lines in file */ int nalloced; /* number of lines allocated */ void **line; /* usage-dependent per-line data */ |