summaryrefslogtreecommitdiff
path: root/src/c
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2011-03-10 18:51:15 -0500
committerGravatar Adam Chlipala <adam@chlipala.net>2011-03-10 18:51:15 -0500
commit07e59d83c097dd267a149220e52498cdb4d79aa4 (patch)
treeb141688cd684a68c9ca22d806b09af122a99bd51 /src/c
parent56cb0ee3ad6609b7f37140a700eb6c6d95930d71 (diff)
Represent 'unit' as C 'int'; change pattern match compilation to avoid 'goto'; change Postgres prepared statement compilation to make life easier for the GCC escape analysis; all this in support of better tail call optimization
Diffstat (limited to 'src/c')
-rw-r--r--src/c/urweb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/urweb.c b/src/c/urweb.c
index 6f9297bd..9b926a99 100644
--- a/src/c/urweb.c
+++ b/src/c/urweb.c
@@ -20,7 +20,7 @@
#include "types.h"
-uw_unit uw_unit_v = {};
+uw_unit uw_unit_v = 0;
// Socket extras