diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2010-12-27 15:42:37 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2010-12-27 15:42:37 +0100 |
commit | 42221db74c2ce57b6452d3b60302fc2b6a6da03c (patch) | |
tree | 4a495c5d965e4f6fcfb7bd390b7cd3319171f156 /src/main.c | |
parent | eadc96008ca6fa0a335ab35daaff0cfd24546cf9 (diff) | |
download | pianobar-42221db74c2ce57b6452d3b60302fc2b6a6da03c.tar.gz pianobar-42221db74c2ce57b6452d3b60302fc2b6a6da03c.tar.bz2 pianobar-42221db74c2ce57b6452d3b60302fc2b6a6da03c.zip |
Use PATH_MAX from limits.h
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -41,6 +41,7 @@ THE SOFTWARE. #include <pthread.h> #include <assert.h> #include <stdbool.h> +#include <limits.h> /* pandora.com library */ #include <piano.h> @@ -397,8 +398,7 @@ static void BarMainLoop (BarApp_t *app) { int main (int argc, char **argv) { static BarApp_t app; - /* FIXME: max path length? */ - char ctlPath[1024]; + char ctlPath[PATH_MAX]; /* terminal attributes _before_ we started messing around with ~ECHO */ struct termios termOrig; |