diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-23 01:49:56 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-23 01:49:56 +0000 |
commit | 8b677ef96783bac6773c89b334b7594074faefe2 (patch) | |
tree | a030792803a3e744f48c105e689f4f2ce7685abe /gcc/bitmap.h | |
parent | 8c594cf80cf7e041113cde1935e1f0e3c6f1ef8d (diff) | |
download | gcc-8b677ef96783bac6773c89b334b7594074faefe2.tar.gz |
* bitmap.h (bitmap_head_def): Make indx field unsigned.
Fixes a couple minor warnings.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24828 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r-- | gcc/bitmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h index 6f3dfa6aa95..9a3e3e2bbb5 100644 --- a/gcc/bitmap.h +++ b/gcc/bitmap.h @@ -48,7 +48,7 @@ typedef struct bitmap_element_def typedef struct bitmap_head_def { bitmap_element *first; /* First element in linked list. */ bitmap_element *current; /* Last element looked at. */ - int indx; /* Index of last element looked at. */ + unsigned int indx; /* Index of last element looked at. */ } bitmap_head, *bitmap; /* Enumeration giving the various operations we support. */ |