diff options
author | Enrico Zini <enrico@enricozini.org> | 2015-09-10 19:52:45 +0200 |
---|---|---|
committer | Enrico Zini <enrico@enricozini.org> | 2015-09-10 19:52:45 +0200 |
commit | c5dd516802af50f8e369e9f520b88dcf28dc77df (patch) | |
tree | b7df739f0cb01abf87bd6cae9cd55bb26920fc94 /tools/ept-cat.cpp | |
parent | 74e4ebe74b307d65d9064357cbf80855afbe059b (diff) | |
parent | ea85d58bc9d619e1511b40a16a630c5da9e60a42 (diff) | |
download | libept-c5dd516802af50f8e369e9f520b88dcf28dc77df.tar.gz |
Merge branch 'notagcoll': removed dependencies on tagcoll and wibble.
Diffstat (limited to 'tools/ept-cat.cpp')
-rw-r--r-- | tools/ept-cat.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/ept-cat.cpp b/tools/ept-cat.cpp index d5af2f6..df68682 100644 --- a/tools/ept-cat.cpp +++ b/tools/ept-cat.cpp @@ -1,5 +1,5 @@ #include <ept/apt/apt.h> -#include <ept/apt/apt.h> +#include <iostream> int summary = 0; @@ -10,7 +10,7 @@ int main( int argc, char **argv ) { Apt db; for (Apt::record_iterator i = db.recordBegin(); i != db.recordEnd(); ++i) - cout << *i << endl; - + cout << *i << endl; + return 0; } |