aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-06-11 04:21:17 (GMT)
committerrathnor <rathnor>2003-06-11 04:21:17 (GMT)
commit0f7c0b9c5fb28db8bb85b52d16a8a7fab77093e9 (patch)
tree29a4afe7f19ff1f7c637966aae274c92c43b333a /src/fluxbox.cc
parent6a14858ac78310369bdd49eb5e050d48c4a418ea (diff)
downloadfluxbox-0f7c0b9c5fb28db8bb85b52d16a8a7fab77093e9.zip
fluxbox-0f7c0b9c5fb28db8bb85b52d16a8a7fab77093e9.tar.bz2
make sure that "0" is 4-bit safe for a null pointer by replacing it with (void
*) NULL
Diffstat (limited to 'src/fluxbox.cc')
-rw-r--r--src/fluxbox.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc
index 7c834a6..1d59381 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.153 2003/06/08 14:32:28 rathnor Exp $ 25// $Id: fluxbox.cc,v 1.154 2003/06/11 04:21:17 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, 0); 1739 execlp(prog, prog, (void *) NULL);
1740 perror(prog); 1740 perror(prog);
1741 } 1741 }
1742 1742