summaryrefslogtreecommitdiff
path: root/tools/ept-cat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ept-cat.cpp')
-rw-r--r--tools/ept-cat.cpp6
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;
}