64bit: Fix compiler warnings in regard to 64bit

vty_interface_layer3.c:584:4: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
    sizeof(subscr->extension)-1, VTY_NEWLINE);
diff --git a/openbsc/src/osmo-bsc_nat/bsc_nat_rewrite_trie.c b/openbsc/src/osmo-bsc_nat/bsc_nat_rewrite_trie.c
index faceb59..9291c89 100644
--- a/openbsc/src/osmo-bsc_nat/bsc_nat_rewrite_trie.c
+++ b/openbsc/src/osmo-bsc_nat/bsc_nat_rewrite_trie.c
@@ -45,10 +45,10 @@
 {
 	struct nat_rewrite_rule *new = &root->rule;
 
-	const size_t len = strlen(rule->prefix);
+	const int len = strlen(rule->prefix);
 	int i;
 
-	if (len == 0) {
+	if (len <= 0) {
 		LOGP(DNAT, LOGL_ERROR, "An empty prefix does not make sense.\n");
 		goto fail;
 	}