diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-12-26 10:19:19 -0800 |
---|---|---|
committer | David Brownell <dbrownell@users.sourceforge.net> | 2009-12-26 10:19:19 -0800 |
commit | 08a890e4aae307d874bd617f4dc742a56f2064a2 (patch) | |
tree | aa5152066057bc3916dd25d0960fa755471628ff /src/svf | |
parent | f9d203d1e6656041affc09528ac373a2b32497ee (diff) | |
download | openocd+libswd-08a890e4aae307d874bd617f4dc742a56f2064a2.tar.gz openocd+libswd-08a890e4aae307d874bd617f4dc742a56f2064a2.tar.bz2 openocd+libswd-08a890e4aae307d874bd617f4dc742a56f2064a2.tar.xz openocd+libswd-08a890e4aae307d874bd617f4dc742a56f2064a2.zip |
cygwin 1.7 build fixes
It's less accepting of signed char ... insisting that e.g. tolower()
not receive one as a parameter.
It's probably good to phase out such usage, given the number of bugs
that lurk in the vicinity (assumptions that char is unsigned), so fix
these even though such usage is actually legal.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/svf')
-rw-r--r-- | src/svf/svf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/svf/svf.c b/src/svf/svf.c index 1c746f38..dfdecbcd 100644 --- a/src/svf/svf.c +++ b/src/svf/svf.c @@ -470,7 +470,8 @@ free_all: #define SVFP_CMD_INC_CNT 1024 static int svf_read_command_from_file(int fd) { - char ch, *tmp_buffer = NULL; + unsigned char ch; + char *tmp_buffer = NULL; int cmd_pos = 0, cmd_ok = 0, slash = 0, comment = 0; while (!cmd_ok && (read(fd, &ch, 1) > 0)) |