diff options
author | midipix <writeonce@midipix.org> | 2015-11-29 22:45:51 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2015-11-29 22:45:51 -0500 |
commit | 6b456b3dc950986a8bc9c369871453da0614e141 (patch) | |
tree | 3f4cada1084507c93b0f2fda1c4b734f4105e536 /src | |
parent | bdd8c8d568916bc6c522e6f329bea817160f4258 (diff) | |
download | pemagine-6b456b3dc950986a8bc9c369871453da0614e141.tar.bz2 pemagine-6b456b3dc950986a8bc9c369871453da0614e141.tar.xz |
pe_get_export_symbol_info(): fix signedness of match.
Diffstat (limited to 'src')
-rw-r--r-- | src/exports/pe_get_export_symbol_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exports/pe_get_export_symbol_info.c b/src/exports/pe_get_export_symbol_info.c index 4f9f5c6..d73bd5b 100644 --- a/src/exports/pe_get_export_symbol_info.c +++ b/src/exports/pe_get_export_symbol_info.c @@ -39,7 +39,7 @@ int pe_get_export_symbol_info( char * exp_name; const char * src; const char * dst; - size_t match; + ssize_t match; uint32_t lower; uint32_t upper; |