aboutsummaryrefslogtreecommitdiff
path: root/src/jtag_scan.c
diff options
context:
space:
mode:
authorGareth McMullin2015-03-13 20:35:39 -0700
committerGareth McMullin2015-03-13 20:35:39 -0700
commitf5c856af3b3b0155050e793f50c29965d2c8326d (patch)
treeaa3e96821c585cb8214bc5cd345a66edc1378596 /src/jtag_scan.c
parentf52a51403f4b9e5d0264cc355bf2414634bb5500 (diff)
Fix pointer sign warnings and remove -Wno-pointer-sign.
Diffstat (limited to 'src/jtag_scan.c')
-rw-r--r--src/jtag_scan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag_scan.c b/src/jtag_scan.c
index 208a1db..c4e80cf 100644
--- a/src/jtag_scan.c
+++ b/src/jtag_scan.c
@@ -74,7 +74,7 @@ static struct jtag_dev_descr_s {
};
/* bucket of ones for don't care TDI */
-static const char ones[] = "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF";
+static const uint8_t ones[] = "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF";
/* Scan JTAG chain for devices, store IR length and IDCODE (if present).
* Reset TAP state machine.