diff options
| author | Camille Mougey <commial@gmail.com> | 2018-06-11 10:10:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-11 10:10:14 +0200 |
| commit | 89cc39af7c54879684a6df0560ecf0a681134366 (patch) | |
| tree | 7b21e240b9d5177e9083b9d4780fe0bbaeafc120 | |
| parent | 08c27666179e37206919bf58f214eb62b14100a3 (diff) | |
| parent | c8a631798ba17155350d378874226afd3b889deb (diff) | |
| download | miasm-89cc39af7c54879684a6df0560ecf0a681134366.tar.gz miasm-89cc39af7c54879684a6df0560ecf0a681134366.zip | |
Merge pull request #756 from serpilliere/fix_gentoo
Jitter: fix gentoo compilation
Diffstat (limited to '')
| -rw-r--r-- | miasm2/jitter/vm_mngr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/vm_mngr.c b/miasm2/jitter/vm_mngr.c index 8601ec20..dd0f6cf2 100644 --- a/miasm2/jitter/vm_mngr.c +++ b/miasm2/jitter/vm_mngr.c @@ -115,7 +115,7 @@ void print_val(uint64_t base, uint64_t addr) fprintf(stderr, "addr 0x%"PRIX64" val 0x%"PRIX64"\n", addr-base, *ptr); } -inline int midpoint(int imin, int imax) +int midpoint(int imin, int imax) { return (imin + imax) / 2; } |