More compile warning fixes

This commit is contained in:
Jasmine Iwanek
2022-11-06 15:55:16 -05:00
parent f88fbd6fd2
commit 6ea143e107
9 changed files with 20 additions and 17 deletions

View File

@@ -26,7 +26,6 @@
#include <stdlib.h>
#include <inttypes.h>
#include <wchar.h>
#include <slirp/libslirp.h>
#define HAVE_STDARG_H
#include <86box/86box.h>
#include <86box/device.h>
@@ -38,6 +37,10 @@
#include <86box/ini.h>
#include <86box/config.h>
#include <86box/video.h>
# define _SSIZE_T_DEFINED
#include <slirp/libslirp.h>
#ifdef _WIN32
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
@@ -414,7 +417,7 @@ net_slirp_init(const netcard_t *card, const uint8_t *mac_addr, void *priv)
/* Set up port forwarding. */
int udp, external, internal, i = 0;
char category[32];
snprintf(category, sizeof(category), "SLiRP Port Forwarding #%i", card->card_num + 1);
snprintf(category, sizeof(category), "SLiRP Port Forwarding #%d", card->card_num + 1);
char key[20];
while (1) {
sprintf(key, "%d_protocol", i);

View File

@@ -118,7 +118,7 @@ static const device_t *net_cards[] = {
};
netcard_conf_t net_cards_conf[NET_CARD_MAX];
int net_card_current = 0;
uint16_t net_card_current = 0;
/* Global variables. */
int network_ndev;