summaryrefslogtreecommitdiff
path: root/src/deh_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/deh_main.c')
-rw-r--r--src/deh_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/deh_main.c b/src/deh_main.c
index b69c049d..7b08ebf4 100644
--- a/src/deh_main.c
+++ b/src/deh_main.c
@@ -79,7 +79,7 @@ static deh_section_t *section_types[] =
void DEH_Checksum(md5_digest_t digest)
{
md5_context_t md5_context;
- int i;
+ unsigned int i;
MD5_Init(&md5_context);
@@ -98,7 +98,7 @@ void DEH_Checksum(md5_digest_t digest)
static void InitialiseSections(void)
{
- int i;
+ unsigned int i;
for (i=0; i<arrlen(section_types); ++i)
{
@@ -113,7 +113,7 @@ static void InitialiseSections(void)
static deh_section_t *GetSectionByName(char *name)
{
- int i;
+ unsigned int i;
for (i=0; i<arrlen(section_types); ++i)
{