diff options
author | rathnor <rathnor> | 2003-06-11 10:50:59 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-06-11 10:50:59 (GMT) |
commit | 6c0db93dda764e1c854390b07875af8550146ced (patch) | |
tree | ecd62e4b57c4ced976f9f4185ed6c72393b5e61d | |
parent | da032379b266eea96cf3080479a4bda90bf03d39 (diff) | |
download | fluxbox-6c0db93dda764e1c854390b07875af8550146ced.zip fluxbox-6c0db93dda764e1c854390b07875af8550146ced.tar.bz2 |
revert NULL thing
-rw-r--r-- | src/FbCommands.cc | 6 | ||||
-rw-r--r-- | src/fluxbox.cc | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/FbCommands.cc b/src/FbCommands.cc index ba409d3..8ca3cbb 100644 --- a/src/FbCommands.cc +++ b/src/FbCommands.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: FbCommands.cc,v 1.7 2003/06/11 04:21:16 rathnor Exp $ | 22 | // $Id: FbCommands.cc,v 1.8 2003/06/11 10:50:58 rathnor Exp $ |
23 | 23 | ||
24 | #include "FbCommands.hh" | 24 | #include "FbCommands.hh" |
25 | #include "fluxbox.hh" | 25 | #include "fluxbox.hh" |
@@ -49,11 +49,11 @@ void ExecuteCmd::execute() { | |||
49 | displaystring += intbuff; | 49 | displaystring += intbuff; |
50 | setsid(); | 50 | setsid(); |
51 | putenv(const_cast<char *>(displaystring.c_str())); | 51 | putenv(const_cast<char *>(displaystring.c_str())); |
52 | execl("/bin/sh", "/bin/sh", "-c", m_cmd.c_str(), (void *) NULL); | 52 | execl("/bin/sh", "/bin/sh", "-c", m_cmd.c_str(), 0); |
53 | exit(0); | 53 | exit(0); |
54 | } | 54 | } |
55 | #else // __EMX__ | 55 | #else // __EMX__ |
56 | spawnlp(P_NOWAIT, "cmd.exe", "cmd.exe", "/c", item->exec().c_str(), (void *) NULL); | 56 | spawnlp(P_NOWAIT, "cmd.exe", "cmd.exe", "/c", item->exec().c_str(), 0); |
57 | #endif // !__EMX__ | 57 | #endif // !__EMX__ |
58 | 58 | ||
59 | } | 59 | } |
diff --git a/src/fluxbox.cc b/src/fluxbox.cc index 1d59381..b2154c7 100644 --- a/src/fluxbox.cc +++ b/src/fluxbox.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: fluxbox.cc,v 1.154 2003/06/11 04:21:17 rathnor Exp $ | 25 | // $Id: fluxbox.cc,v 1.155 2003/06/11 10:50:59 rathnor Exp $ |
26 | 26 | ||
27 | #include "fluxbox.hh" | 27 | #include "fluxbox.hh" |
28 | 28 | ||
@@ -1736,7 +1736,7 @@ void Fluxbox::restart(const char *prog) { | |||
1736 | shutdown(); | 1736 | shutdown(); |
1737 | 1737 | ||
1738 | if (prog) { | 1738 | if (prog) { |
1739 | execlp(prog, prog, (void *) NULL); | 1739 | execlp(prog, prog, 0); |
1740 | perror(prog); | 1740 | perror(prog); |
1741 | } | 1741 | } |
1742 | 1742 | ||