Skip to content

Commit

Permalink
fix riscv32_generic
Browse files Browse the repository at this point in the history
  • Loading branch information
ddavis-2015 committed Dec 8, 2023
1 parent 538791b commit 007c3e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tensorflow/lite/micro/riscv32_generic/debug_log.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ extern "C" void DebugLog(const char* format, va_list args) {

#ifndef TF_LITE_STRIP_ERROR_STRINGS
// Only called from MicroVsnprintf (micro_log.h)
extern "C" int DebugLogVsnprintf(char* buffer, size_t buf_size,
const char* format, va_list vlist) {
extern "C" int DebugVsnprintf(char* buffer, size_t buf_size, const char* format,
va_list vlist) {
return vsnprintf_(buffer, buf_size, format, vlist);
}
#endif

0 comments on commit 007c3e7

Please sign in to comment.