diff options
| author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-04-10 12:12:43 +0200 | 
|---|---|---|
| committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-04-10 12:12:43 +0200 | 
| commit | 5703aa0390484dd7da4bd9c388c85708d8fcd339 (patch) | |
| tree | 6566c22df2766695b983767463f1942d49c24538 | |
| parent | 28ad28839985e965c9ca06a9a202523414c84ac4 (diff) | |
| download | st-5703aa0390484dd7da4bd9c388c85708d8fcd339.tar.xz st-5703aa0390484dd7da4bd9c388c85708d8fcd339.zip  | |
make argv0 not static, fixes a warning with tcc
Reported by Aajonus, thanks!
| -rw-r--r-- | x.c | 2 | 
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@  #include <X11/Xft/Xft.h>  #include <X11/XKBlib.h> -static char *argv0; +char *argv0;  #include "arg.h"  #include "st.h"  #include "win.h"  | 
