btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / kits / package / hpkg / ErrorOutput.cpp
blob449785405ef7b2419716bad24b2861d8a52f2e5e
1 /*
2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
7 #include <package/hpkg/ErrorOutput.h>
9 #include <stdio.h>
12 namespace BPackageKit {
14 namespace BHPKG {
17 BErrorOutput::~BErrorOutput()
22 void
23 BErrorOutput::PrintError(const char* format, ...)
25 va_list args;
26 va_start(args, format);
27 PrintErrorVarArgs(format, args);
28 va_end(args);
32 } // namespace BHPKG
34 } // namespace BPackageKit