summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2012-12-10 11:42:08 +0000
committerKeith Bostic <keith@wiredtiger.com>2012-12-10 11:42:08 +0000
commitb558ccab993e32807683fa3edb3f16d033c40c0e (patch)
treef35c4d096707729b18b5432c164e1b9a219464d4
parent4db0c53efd0aaabd39f9e1dd11b83989b1fa8112 (diff)
downloadmongo-b558ccab993e32807683fa3edb3f16d033c40c0e.tar.gz
make it clear we're going to have an error.
-rw-r--r--examples/c/ex_all.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/c/ex_all.c b/examples/c/ex_all.c
index 91ea0dab54a..262a7a659ff 100644
--- a/examples/c/ex_all.c
+++ b/examples/c/ex_all.c
@@ -270,7 +270,7 @@ cursor_ops(WT_SESSION *session)
{
/*! [Display an error] */
- const char *key = "some key";
+ const char *key = "non-existent key";
cursor->set_key(cursor, key);
if ((ret = cursor->remove(cursor)) != 0) {
fprintf(stderr,