aboutsummaryrefslogtreecommitdiff
path: root/src/survive_driverman.c
diff options
context:
space:
mode:
authorCNLohr <lohr85@gmail.com>2017-03-17 01:08:06 -0400
committerCNLohr <lohr85@gmail.com>2017-03-17 01:08:06 -0400
commit8ea24c306fdf2a141433e396307e92a227416ba5 (patch)
treee5c33347f918547acafd0770cce45bced41ef89e /src/survive_driverman.c
parentc9be7c057aa9570d0f67109c87b74e3aab640322 (diff)
downloadlibsurvive-8ea24c306fdf2a141433e396307e92a227416ba5.tar.gz
libsurvive-8ea24c306fdf2a141433e396307e92a227416ba5.tar.bz2
Fix Warnings
Diffstat (limited to 'src/survive_driverman.c')
-rw-r--r--src/survive_driverman.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/survive_driverman.c b/src/survive_driverman.c
index d694e64..2afaf65 100644
--- a/src/survive_driverman.c
+++ b/src/survive_driverman.c
@@ -31,7 +31,7 @@ void * GetDriver( const char * element )
const char * GetDriverNameMatching( const char * prefix, int place )
{
int i;
- int prefixlen = strlen( prefix );
+ int prefixlen = (int)strlen( prefix );
for( i = 0; i < NrDrivers; i++ )
{