diff options
author | Chris Michael <cp.michael@samsung.com> | 2016-12-20 11:27:18 -0500 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2016-12-20 11:27:18 -0500 |
commit | 3b7b894a623499b99f1c8d5da01cc0f7865c52c2 (patch) | |
tree | a55f39e904cd1540e56bd15be898d81193ba7bf4 /src/lib/embryo/embryo_float.c | |
parent | 913479199dffe7e6e384b518fcb3a1fd127ab223 (diff) |
embryo: Fix typo in float comparison 'fix'
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to '')
-rw-r--r-- | src/lib/embryo/embryo_float.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/embryo/embryo_float.c b/src/lib/embryo/embryo_float.c index 8eba7bb5f2..0d16e62965 100644 --- a/src/lib/embryo/embryo_float.c +++ b/src/lib/embryo/embryo_float.c | |||
@@ -217,7 +217,7 @@ _embryo_fp_cmp(Embryo_Program *ep EINA_UNUSED, Embryo_Cell *params) | |||
217 | if (params[0] != (2 * sizeof(Embryo_Cell))) return 0; | 217 | if (params[0] != (2 * sizeof(Embryo_Cell))) return 0; |
218 | f = EMBRYO_CELL_TO_FLOAT(params[1]); | 218 | f = EMBRYO_CELL_TO_FLOAT(params[1]); |
219 | ff = EMBRYO_CELL_TO_FLOAT(params[2]); | 219 | ff = EMBRYO_CELL_TO_FLOAT(params[2]); |
220 | if (EINA_FLT_CMP(F, FF)) return 0; | 220 | if (EINA_FLT_CMP(f, ff)) return 0; |
221 | else if (f > ff) | 221 | else if (f > ff) |
222 | return 1; | 222 | return 1; |
223 | return -1; | 223 | return -1; |