summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Jarosch <tomj@simonv.com>2014-12-27 02:00:15 +0100
committerThomas Jarosch <tomj@simonv.com>2014-12-27 02:00:15 +0100
commitd68262eede9c5a5f911f9619784f466a6730e21a (patch)
tree9d70fed19f4417501f812f1cd36aacaeb9db43dd
parent91f1393f756e61820842f5d63bede89de907de59 (diff)
downloadrockbox-d68262eede9c5a5f911f9619784f466a6730e21a.tar.gz
rockbox-d68262eede9c5a5f911f9619784f466a6730e21a.zip
Two more typo fixes
Change-Id: Id3ec7c1da356cb7c617a1d9ad57c9e0ae9fa6611
-rw-r--r--firmware/include/buflib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/include/buflib.h b/firmware/include/buflib.h
index 397d0f68de..d1ff58720b 100644
--- a/firmware/include/buflib.h
+++ b/firmware/include/buflib.h
@@ -237,7 +237,7 @@ int buflib_alloc_maximum(struct buflib_context* ctx, const char* name,
237 237
238/** 238/**
239 * Queries the data pointer for the given handle. It's actually a cheap 239 * Queries the data pointer for the given handle. It's actually a cheap
240 * operation, don't hesitate using it extensivly. 240 * operation, don't hesitate using it extensively.
241 * 241 *
242 * Notice that you need to re-query after every direct or indirect yield(), 242 * Notice that you need to re-query after every direct or indirect yield(),
243 * because compaction can happen by other threads which may get your data 243 * because compaction can happen by other threads which may get your data
@@ -321,7 +321,7 @@ void buflib_buffer_in(struct buflib_context *ctx, int size);
321 * handle: The handle indicating the allocation 321 * handle: The handle indicating the allocation
322 * 322 *
323 * Returns: A pointer to the string identifier of the allocation, or NULL 323 * Returns: A pointer to the string identifier of the allocation, or NULL
324 * if none was specified with buflib_alloc_ex/(. 324 * if none was specified with buflib_alloc_ex().
325 */ 325 */
326const char* buflib_get_name(struct buflib_context *ctx, int handle); 326const char* buflib_get_name(struct buflib_context *ctx, int handle);
327 327