summaryrefslogtreecommitdiffstats
path: root/src/gtk/pswwin.c
diff options
context:
space:
mode:
authorHugo Villeneuve <hugo@hugovil.com>2014-02-13 00:38:22 -0500
committerHugo Villeneuve <hugo@hugovil.com>2014-02-15 00:13:21 -0500
commite417485aaf141647fcb32f45e38bbc5163abb2b4 (patch)
tree8a57b8378f9b7bef3f91d8eb99cad5f8f26a2d1b /src/gtk/pswwin.c
parent87daca654ded1b5b8fd9d041abf5df78fbbae498 (diff)
downloademu8051-e417485aaf141647fcb32f45e38bbc5163abb2b4.tar.gz
emu8051-e417485aaf141647fcb32f45e38bbc5163abb2b4.tar.bz2
emu8051-e417485aaf141647fcb32f45e38bbc5163abb2b4.zip
Fix C99 standard types uintN_t
Diffstat (limited to 'src/gtk/pswwin.c')
-rw-r--r--src/gtk/pswwin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gtk/pswwin.c b/src/gtk/pswwin.c
index 9dd6816..e678abf 100644
--- a/src/gtk/pswwin.c
+++ b/src/gtk/pswwin.c
@@ -12,6 +12,7 @@
#endif
#include <stdio.h>
+#include <stdint.h>
#include "common.h"
#include "reg8051.h"
@@ -83,7 +84,7 @@ pswwin_cell_edited(GtkCellRendererText *cell, gchar *path_string,
guint column;
gpointer columnptr;
GtkTreeIter iter;
- u_int8_t old;
+ uint8_t old;
int new;
char str[10];
int bit_index;