diff options
Diffstat (limited to 'winsup/cygwin/smallprint.c')
-rw-r--r-- | winsup/cygwin/smallprint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/smallprint.c b/winsup/cygwin/smallprint.c index ec31afa9c..740248e82 100644 --- a/winsup/cygwin/smallprint.c +++ b/winsup/cygwin/smallprint.c @@ -63,7 +63,7 @@ rn (char *dst, int base, int dosign, long long val, int len, int pad) int __small_vsprintf (char *dst, const char *fmt, va_list ap) { - char tmp[MAX_PATH + 1]; + char tmp[CYG_MAX_PATH + 1]; char *orig = dst; const char *s; @@ -149,7 +149,7 @@ __small_vsprintf (char *dst, const char *fmt, va_list ap) dst = rn (dst, 16, 0, va_arg (ap, long long), len, pad); break; case 'P': - if (!GetModuleFileName (NULL, tmp, MAX_PATH)) + if (!GetModuleFileName (NULL, tmp, CYG_MAX_PATH)) s = "cygwin program"; else s = tmp; |