summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2015-03-25 23:06:38 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2015-03-25 23:06:38 -0400
commit66676ad5343dd2ccc94ce87831dbed7cc1ad1dbc (patch)
treeefc6ed8cd5b048d8784fd09d6c4751341dfb1e74
parent17bd2356a5b17893e626749be399fb8fda23db1e (diff)
downloadmongo-66676ad5343dd2ccc94ce87831dbed7cc1ad1dbc.tar.gz
Fix name of function in comment
-rw-r--r--src/async/async_worker.c4
-rw-r--r--src/include/extern.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/async/async_worker.c b/src/async/async_worker.c
index fed917f253a..543046f7a0c 100644
--- a/src/async/async_worker.c
+++ b/src/async/async_worker.c
@@ -279,10 +279,10 @@ __async_worker_op(WT_SESSION_IMPL *session, WT_ASYNC_OP_IMPL *op,
}
/*
- * __async_worker --
+ * __wt_async_worker --
* The async worker threads.
*/
-WT_THREAD_RET /* Quiet style.py */
+WT_THREAD_RET
__wt_async_worker(void *arg)
{
WT_ASYNC *async;
diff --git a/src/include/extern.h b/src/include/extern.h
index f8ea5eca6e9..12877c04051 100644
--- a/src/include/extern.h
+++ b/src/include/extern.h
@@ -8,7 +8,7 @@ extern int __wt_async_flush(WT_SESSION_IMPL *session);
extern int __wt_async_new_op(WT_SESSION_IMPL *session, const char *uri, const char *config, const char *cfg[], WT_ASYNC_CALLBACK *cb, WT_ASYNC_OP_IMPL **opp);
extern int __wt_async_op_enqueue(WT_SESSION_IMPL *session, WT_ASYNC_OP_IMPL *op);
extern int __wt_async_op_init(WT_SESSION_IMPL *session);
-extern WT_THREAD_RET /*Quiet style.py */ __wt_async_worker(void *arg);
+extern WT_THREAD_RET __wt_async_worker(void *arg);
extern int __wt_block_addr_to_buffer(WT_BLOCK *block, uint8_t **pp, wt_off_t offset, uint32_t size, uint32_t cksum);
extern int __wt_block_buffer_to_addr(WT_BLOCK *block, const uint8_t *p, wt_off_t *offsetp, uint32_t *sizep, uint32_t *cksump);
extern int __wt_block_addr_valid(WT_SESSION_IMPL *session, WT_BLOCK *block, const uint8_t *addr, size_t addr_size, int live);