projects
/
profile
/
ivi
/
edje.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ee7152
)
more cases of default return etc.
author
raster
<raster>
Sun, 16 Jan 2011 04:08:49 +0000
(
04:08
+0000)
committer
raster
<raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 16 Jan 2011 04:08:49 +0000
(
04:08
+0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@56170
7cbeb6ba
-43b4-40fd-8cce-
4c39aea84d33
src/bin/edje_cc_parse.c
patch
|
blob
|
history
diff --git
a/src/bin/edje_cc_parse.c
b/src/bin/edje_cc_parse.c
index
eae7c21
..
05ae2dc
100644
(file)
--- a/
src/bin/edje_cc_parse.c
+++ b/
src/bin/edje_cc_parse.c
@@
-1452,7
+1452,7
@@
_is_op1f(char c)
case '*':;
case '%':;
case '/': return 1;
- default:
return 0
;
+ default:
break
;
}
return 0;
}
@@
-1464,7
+1464,7
@@
_is_op2f(char c)
{
case '+':;
case '-': return 1;
- default:
return 0
;
+ default:
break
;
}
return 0;
}
@@
-1498,8
+1498,8
@@
_calcf(char op, double a, double b)
default:
ERR("%s: Error. %s:%i unexpected character '%c'\n",
progname, file_in, line - 1, op);
- return a;
}
+ return a;
}
static int