summaryrefslogtreecommitdiffstats
path: root/include/os.h
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2014-01-15 13:06:41 +0900
committerTom Rini <trini@ti.com>2014-01-24 16:59:08 -0500
commit347d06dec43e2e6ca50f975d5472072a977c528f (patch)
tree11ebfdaf3d4af2f2abb6f31831060afdb11d246e /include/os.h
parentbf1af3d872831dd33fff223f007bbcf4e546f5b8 (diff)
downloadtalos-obmc-uboot-347d06dec43e2e6ca50f975d5472072a977c528f.tar.gz
talos-obmc-uboot-347d06dec43e2e6ca50f975d5472072a977c528f.zip
sandbox: fix the return type of os_free() function
The function os_free() returns nothing. Its return type should be "void" rather than "void *". Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'include/os.h')
-rw-r--r--include/os.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/os.h b/include/os.h
index b65fba4301..d6d6e5794e 100644
--- a/include/os.h
+++ b/include/os.h
@@ -113,7 +113,7 @@ void *os_malloc(size_t length);
*
* \param ptr Pointer to memory block to free
*/
-void *os_free(void *ptr);
+void os_free(void *ptr);
/**
* Reallocate previously-allocated memory to increase/decrease space
OpenPOWER on IntegriCloud