Skip to content
This repository has been archived by the owner on Apr 8, 2018. It is now read-only.

Commit

Permalink
fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
Force.Charlie committed Jun 20, 2015
1 parent 17900e9 commit d498c9d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion commands.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ struct commands
char *commands; /* Commands text. */
char **command_lines; /* Commands chopped up into lines. */
char *lines_flags; /* One set of flag bits for each line. */
unsigned short ncommand_lines;/* Number of command lines. */
unsigned int ncommand_lines;/* Number of command lines. */
char recipe_prefix; /* Recipe prefix for this command set. */
unsigned int any_recurse:1; /* Nonzero if any 'lines_flags' elt has */
/* the COMMANDS_RECURSE bit set. */
Expand Down
2 changes: 1 addition & 1 deletion config.h.W32.template
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ char *ttyname (int);
/* #undef UMAX4_3 */

/* Version number of package */
#define VERSION "%VERSION%"
#define VERSION "4.0.0.0"

/* Define if using the dmalloc debugging malloc package */
/* #undef WITH_DMALLOC */
Expand Down
8 changes: 4 additions & 4 deletions dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ struct directory_contents
* qualified name of the directory. Beware though, this is also
* unreliable. I'm open to suggestion on a better way to emulate inode. */
char *path_key;
int ctime;
int mtime; /* controls check for stale directory cache */
long long int ctime;
long long int mtime; /* controls check for stale directory cache */
int fs_flags; /* FS_FAT, FS_NTFS, ... */
# define FS_FAT 0x1
# define FS_NTFS 0x2
Expand Down Expand Up @@ -405,8 +405,8 @@ static unsigned int open_directories = 0;
struct dirfile
{
const char *name; /* Name of the file. */
short length;
short impossible; /* This file is impossible. */
int length;
int impossible; /* This file is impossible. */
};

static unsigned long
Expand Down
2 changes: 1 addition & 1 deletion w32/compat/posixfcn.c
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ dlerror (void)
if (!last_err)
return NULL;

ret = FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM
ret = FormatMessageA (FORMAT_MESSAGE_FROM_SYSTEM
| FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, last_err, 0, errbuf, sizeof (errbuf), NULL);
while (ret > 0 && (errbuf[ret - 1] == '\n' || errbuf[ret - 1] == '\r'))
Expand Down

0 comments on commit d498c9d

Please sign in to comment.