projects
/
imager.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3fbda1c
)
prefer static first
author
Tony Cook
<tony@develop-help.com>
Sat, 23 Feb 2013 03:08:36 +0000
(14:08 +1100)
committer
Tony Cook
<tony@develop-help.com>
Sat, 23 Feb 2013 03:08:36 +0000
(14:08 +1100)
DynTest/linstretch.c
patch
|
blob
|
blame
|
history
diff --git
a/DynTest/linstretch.c
b/DynTest/linstretch.c
index 6579e121e7055444cb077551d2bef9664162587a..9f240ef524ccef292c8acf65d69a38e2a0ec9ece 100644
(file)
--- a/
DynTest/linstretch.c
+++ b/
DynTest/linstretch.c
@@
-18,8
+18,8
@@
void null_plug(void *ptr) { }
*/
-unsigned char
static
+unsigned char
saturate(int in) {
if (in>255) { return 255; }
else if (in>0) return in;