This is a trivial patch, which just removes trailing whitespaces.

git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1293 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Jie Zhang 17 years ago
parent 6edc1f842d
commit a5782117c4

@ -1,3 +1,12 @@
2008-07-03 Jie Zhang <jie.zhang@analog.com>
* src/bsdl/bsdl.c: Remove trailing whitespaces.
* src/lib/make-relative-prefix.c: Likewise.
* src/lib/lbasename.c: Likewise.
* src/lib/lrealpath.c: Likewise.
* doc/UrJTAG.txt: Likewise.
* data/atmel/PARTS: Likewise.
2008-07-02 Jie Zhang <jie.zhang@analog.com>
* include/bus_driver.h (struct bus_driver): Add driver argument

@ -27,8 +27,8 @@
#
# [2] Atmel Corporation, 1504BSDL.ZIP - BSDL files for ATF1504AS/ASL and
# ATF1504ASV/ASVL
#
# [3] Atmel Corporation, "AT32AP7000 - High Performance, Low Power
#
# [3] Atmel Corporation, "AT32AP7000 - High Performance, Low Power
# AVR(R)32 32-Bit Microcontroller", Rev. 32003K-AVR32-10/07
#

@ -387,7 +387,7 @@ might give problems if the path contains spaces, as "Program Files" does!):
UrJTAG may be compiled into a Windows executable using the MinGW compiler
(http://www.mingw.org). This has the advantage over running in a Cygwin
environment that you don't need to install anything else but the jtag.exe.
environment that you don't need to install anything else but the jtag.exe.
However, because support for MinGW is quite new in UrJTAG, it may lack some
features (e.g. readline support) or run a little slower.

@ -201,7 +201,7 @@ void bsdl_set_path(chain_t *chain, const char *pathlist)
char *pathelem;
int num;
size_t len;
/* free memory of current path list */
if (globs->path_list) {
for (num = 0; globs->path_list[num]; num++)
@ -220,9 +220,9 @@ void bsdl_set_path(chain_t *chain, const char *pathlist)
globs->path_list = (char **)realloc(globs->path_list, (num+1) * sizeof(char *));
/* enter path element up to the delimeter */
if (delim == NULL)
len = strlen(elem);
len = strlen(elem);
else
len = delim-elem;
len = delim-elem;
pathelem = malloc(len + 1);
memcpy(pathelem, elem, len);
pathelem[len] = '\0';

@ -52,7 +52,7 @@ lbasename (const char *name)
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
/* Skip over a possible disk name. */
if (ISALPHA (name[0]) && name[1] == ':')
if (ISALPHA (name[0]) && name[1] == ':')
name += 2;
#endif

@ -65,7 +65,7 @@ extern char *canonicalize_file_name (const char *);
# endif
# endif
#else
/* cygwin has realpath, so it won't get here. */
/* cygwin has realpath, so it won't get here. */
# if defined (_WIN32)
# define WIN32_LEAN_AND_MEAN
# include <windows.h> /* for GetFullPathName */

@ -78,7 +78,7 @@ relative prefix can be found, return @code{NULL}.
# define HAVE_DOS_BASED_FILE_SYSTEM
# define HAVE_HOST_EXECUTABLE_SUFFIX
# define HOST_EXECUTABLE_SUFFIX ".exe"
# ifndef DIR_SEPARATOR_2
# ifndef DIR_SEPARATOR_2
# define DIR_SEPARATOR_2 '\\'
# endif
# define PATH_SEPARATOR ';'

Loading…
Cancel
Save