summaryrefslogtreecommitdiffstatshomepage
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
m---------lib/berkeley-db-1.xx0
-rw-r--r--lib/utils/printf.c6
-rw-r--r--lib/utils/pyexec.c2
-rw-r--r--lib/utils/stdout_helpers.c2
4 files changed, 8 insertions, 2 deletions
diff --git a/lib/berkeley-db-1.xx b/lib/berkeley-db-1.xx
-Subproject 78a4787948bb80cbfafcfd7910f95f61a4dd0d4
+Subproject dab957dacddcbf6cbc85d42df62e189e4877bb7
diff --git a/lib/utils/printf.c b/lib/utils/printf.c
index 308525b6e8..303edfcca0 100644
--- a/lib/utils/printf.c
+++ b/lib/utils/printf.c
@@ -24,6 +24,10 @@
* THE SOFTWARE.
*/
+#include "py/mpconfig.h"
+
+#if MICROPY_USE_INTERNAL_PRINTF
+
#include <stdint.h>
#include <string.h>
#include <stdarg.h>
@@ -127,3 +131,5 @@ int snprintf(char *str, size_t size, const char *fmt, ...) {
va_end(ap);
return ret;
}
+
+#endif //MICROPY_USE_INTERNAL_PRINTF
diff --git a/lib/utils/pyexec.c b/lib/utils/pyexec.c
index 411ee969d6..2bc7a00cc0 100644
--- a/lib/utils/pyexec.c
+++ b/lib/utils/pyexec.c
@@ -112,7 +112,7 @@ STATIC int parse_compile_execute(void *source, mp_parse_input_kind_t input_kind,
printf("took " UINT_FMT " ms\n", ticks);
// qstr info
{
- mp_uint_t n_pool, n_qstr, n_str_data_bytes, n_total_bytes;
+ size_t n_pool, n_qstr, n_str_data_bytes, n_total_bytes;
qstr_pool_info(&n_pool, &n_qstr, &n_str_data_bytes, &n_total_bytes);
printf("qstr:\n n_pool=" UINT_FMT "\n n_qstr=" UINT_FMT "\n n_str_data_bytes=" UINT_FMT "\n n_total_bytes=" UINT_FMT "\n", n_pool, n_qstr, n_str_data_bytes, n_total_bytes);
}
diff --git a/lib/utils/stdout_helpers.c b/lib/utils/stdout_helpers.c
index 6efe10b92c..5f7a17d320 100644
--- a/lib/utils/stdout_helpers.c
+++ b/lib/utils/stdout_helpers.c
@@ -11,7 +11,7 @@
// Send "cooked" string of given length, where every occurance of
// LF character is replaced with CR LF.
-void mp_hal_stdout_tx_strn_cooked(const char *str, mp_uint_t len) {
+void mp_hal_stdout_tx_strn_cooked(const char *str, size_t len) {
while (len--) {
if (*str == '\n') {
mp_hal_stdout_tx_strn("\r", 1);