summaryrefslogtreecommitdiff
path: root/src/pld/xilinx_bit.c
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-18 07:07:12 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-18 07:07:12 +0000
commitc18947b947064e7eceed8047c42d4c8dfd8ae964 (patch)
tree095162ab48bb63952b95a8d65a98d276e3d63775 /src/pld/xilinx_bit.c
parent310be8a838c9db6b67bc4d6d7d3c7ff41b32af4c (diff)
downloadopenocd_libswd-c18947b947064e7eceed8047c42d4c8dfd8ae964.tar.gz
openocd_libswd-c18947b947064e7eceed8047c42d4c8dfd8ae964.tar.bz2
openocd_libswd-c18947b947064e7eceed8047c42d4c8dfd8ae964.tar.xz
openocd_libswd-c18947b947064e7eceed8047c42d4c8dfd8ae964.zip
Transform 'u8' to 'uint8_t'
- Replace '\([^_]\)u8' with '\1uint8_t'. - Replace '^u8' with 'uint8_t'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2276 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/pld/xilinx_bit.c')
-rw-r--r--src/pld/xilinx_bit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pld/xilinx_bit.c b/src/pld/xilinx_bit.c
index e647a9c5..5dacdac3 100644
--- a/src/pld/xilinx_bit.c
+++ b/src/pld/xilinx_bit.c
@@ -29,9 +29,9 @@
static int read_section(FILE *input_file, int length_size, char section,
- u32 *buffer_length, u8 **buffer)
+ u32 *buffer_length, uint8_t **buffer)
{
- u8 length_buffer[4];
+ uint8_t length_buffer[4];
int length;
char section_char;
int read_count;