diff options
author | Paul Selkirk <paul@psgd.org> | 2017-10-11 15:48:58 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2017-10-11 15:48:58 -0400 |
commit | 0042b62fc6f54935d481b632c1e9153b64d0ce58 (patch) | |
tree | 6c9fe82f7e0346f70316d979e28cbb659cd79cf7 /core.c | |
parent | 63636301593c8a3952afae61c1b5f279c27f69ea (diff) |
Cleanup: Remove "const" qualifiers from function return types.
Diffstat (limited to 'core.c')
-rw-r--r-- | core.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -270,7 +270,7 @@ const hal_core_info_t *hal_core_info(const hal_core_t *core) return core == NULL ? NULL : &core->info; } -const int hal_core_busy(const hal_core_t *core) +int hal_core_busy(const hal_core_t *core) { return (int)core->busy; } |