diff options
author | 2013-03-25 16:23:40 +0000 | |
---|---|---|
committer | 2013-03-25 16:23:40 +0000 | |
commit | 4d20ab1e571ed39be5c118c050fd3573fe063b25 (patch) | |
tree | 957a084b29410bcfe62a005cc165336c930fdd12 | |
parent | 50c0a54079164fdc55d345ecc783e89a9d6ab160 (diff) | |
download | paludis-4d20ab1e571ed39be5c118c050fd3573fe063b25.tar.gz paludis-4d20ab1e571ed39be5c118c050fd3573fe063b25.tar.xz |
Fix older compilers compile
-rw-r--r-- | paludis/repositories/e/pipe_command_handler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/paludis/repositories/e/pipe_command_handler.cc b/paludis/repositories/e/pipe_command_handler.cc index 3fb6fff25..d76afca15 100644 --- a/paludis/repositories/e/pipe_command_handler.cc +++ b/paludis/repositories/e/pipe_command_handler.cc @@ -1,7 +1,7 @@ /* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* - * Copyright (c) 2007, 2008, 2009, 2010, 2011 Ciaran McCreesh + * Copyright (c) 2007, 2008, 2009, 2010, 2011, 2012 Ciaran McCreesh * Copyright (c) 2009 Ingmar Vanhassel * Copyright (c) 2013 Saleem Abdulrasool <compnerd@compnerd.org> * @@ -595,7 +595,7 @@ paludis::erepository::pipe_command_handler(const Environment * const environment try { - if (maybe_partitioning == NULL) + if (! maybe_partitioning) { Log::get_instance()->message("e.pipe_commands.partitioning.unsupported", ll_warning, lc_context) |