Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes to remove compiler warnings #48

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/csp_bridge.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static CSP_DEFINE_TASK(csp_bridge) {
}
}

return CSP_TASK_RETURN;
//return CSP_TASK_RETURN;

}

Expand Down
2 changes: 1 addition & 1 deletion src/csp_debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ void do_csp_debug(csp_debug_level_t level, const char *format, ...) {
if (csp_debug_hook_func) {
csp_debug_hook_func(level, format, args);
} else {
csp_sys_set_color(color);
csp_sys_set_color((csp_color_t) color);
#if (CSP_DEBUG_TIMESTAMP)
csp_timestamp_t ts;
csp_clock_get_time(&ts);
Expand Down
2 changes: 1 addition & 1 deletion src/csp_iflist.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#include <csp/csp_iflist.h>

#include <stdio.h>
#include <string.h>
#include <strings.h>

#include <csp/csp_debug.h>

Expand Down