summaryrefslogtreecommitdiff
path: root/examples/c/ex_pack.c
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2012-04-23 19:24:04 +0000
committerKeith Bostic <keith@wiredtiger.com>2012-04-23 19:24:04 +0000
commit95698ac07bf1d7ac08b770c75181a1a0e3541772 (patch)
treecca8a93a19a125b2f09a15e21dd0c17fcf6f4f5c /examples/c/ex_pack.c
parente04808c812d8024f67dfcdb8ea332ffab7049d9a (diff)
downloadmongo-95698ac07bf1d7ac08b770c75181a1a0e3541772.tar.gz
style guide: don't put a space after "sizeof".
Diffstat (limited to 'examples/c/ex_pack.c')
-rw-r--r--examples/c/ex_pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/c/ex_pack.c b/examples/c/ex_pack.c
index 7fe1c123181..87344da3df4 100644
--- a/examples/c/ex_pack.c
+++ b/examples/c/ex_pack.c
@@ -55,7 +55,7 @@ int main(void)
/*! [packing] */
size = wiredtiger_struct_size("iii", 42, 1000, -9);
- if (size > sizeof (buf)) {
+ if (size > sizeof(buf)) {
/* Allocate a bigger buffer. */
}
wiredtiger_struct_pack(buf, size, "iii", 42, 1000, -9);