summaryrefslogtreecommitdiff
path: root/appl/lib/watchvars.b
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2008-01-22 21:54:45 +0000
committerCharles.Forsyth <devnull@localhost>2008-01-22 21:54:45 +0000
commit9b29ac7ea714507a9c0690620c02c8ca5ab25f90 (patch)
tree1eeb3e33858dfc27844b520036f2119869f9088b /appl/lib/watchvars.b
parent60951762adc08955ddba7ff59f6043e7a542a0f2 (diff)
20080122-2200
Diffstat (limited to 'appl/lib/watchvars.b')
-rw-r--r--appl/lib/watchvars.b2
1 files changed, 1 insertions, 1 deletions
diff --git a/appl/lib/watchvars.b b/appl/lib/watchvars.b
index ad6c6947..d171f211 100644
--- a/appl/lib/watchvars.b
+++ b/appl/lib/watchvars.b
@@ -17,7 +17,7 @@ Watchvar[T].get(e: self Watchvar): T
Watchvar[T].set(e: self Watchvar, v: T)
{
- (ov, ic) := <-e.c;
+ (nil, ic) := <-e.c;
ic <-= v;
e.c <-= (v, chan[1] of T);
}