diff options
author | Eugene Sandulenko | 2005-07-30 21:11:48 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2005-07-30 21:11:48 +0000 |
commit | 6b4484472b79dc7ea7d1ce545a28fba7d3b7696f (patch) | |
tree | c44c4e61f18ddd537f7082cb48869cf33d422fbd /backends/epoc/portdefs.h | |
parent | 86ab70b149e5cd00cf54f2e41896e2c4e16795e4 (diff) | |
download | scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.gz scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.bz2 scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.zip |
Remove trailing whitespaces.
svn-id: r18604
Diffstat (limited to 'backends/epoc/portdefs.h')
-rw-r--r-- | backends/epoc/portdefs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/epoc/portdefs.h b/backends/epoc/portdefs.h index 2f993c7e4e..4bcf1a56ca 100644 --- a/backends/epoc/portdefs.h +++ b/backends/epoc/portdefs.h @@ -65,14 +65,14 @@ // somehow nobody has this function... #define hypot(a, b) sqrt((a)*(a) + (b)*(b)) -// Symbian bsearch implementation is flawed +// Symbian bsearch implementation is flawed void inline *scumm_bsearch(const void *key, const void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *)) { size_t i; - for (i=0; i<nmemb; i++) + for (i=0; i<nmemb; i++) if (compar(key, (void*)((size_t)base + size * i)) == 0) return (void*)((size_t)base + size * i); return NULL; } #define bsearch scumm_bsearch - + |