summaryrefslogtreecommitdiff
path: root/target.h
diff options
context:
space:
mode:
Diffstat (limited to 'target.h')
-rw-r--r--target.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/target.h b/target.h
index 61f2803c16..16cd9c4492 100644
--- a/target.h
+++ b/target.h
@@ -5,7 +5,7 @@
typedef struct Target Target;
-#include "name.h"
+#include "unit.h"
typedef enum TargetState {
TARGET_DEAD,
@@ -18,6 +18,6 @@ struct Target {
TargetState state;
};
-extern const NameVTable target_vtable;
+extern const UnitVTable target_vtable;
#endif