diff --git a/ChangeLog b/ChangeLog index 25add802ca..61f1df8266 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Feb 9 23:11:27 2011 Tanaka Akira + + * ext/pty/pty.c: parenthesize macro arguments. + Tue Feb 8 11:47:11 2011 Loren Sands-Ramshaw * array.c: documentation clarification in rotate, rotate!, diff --git a/ext/pty/pty.c b/ext/pty/pty.c index 36392f2270..0c9f37e040 100644 --- a/ext/pty/pty.c +++ b/ext/pty/pty.c @@ -152,7 +152,7 @@ chfunc(void *data, char *errbuf, size_t errbuf_len) VALUE *argv = carg->argv; #define ERROR_EXIT(str) do { \ - strlcpy(errbuf, str, errbuf_len); \ + strlcpy(errbuf, (str), errbuf_len); \ return -1; \ } while (0)