summaryrefslogtreecommitdiff
path: root/vehicle.c
diff options
context:
space:
mode:
authormartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2007-04-17 09:10:14 +0000
committermartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2007-04-17 09:10:14 +0000
commit17a8019e360078561435b02e9160c4bf888893c7 (patch)
treefab190d232a901aedd234af1f67a3c96b7c71b0c /vehicle.c
parenta583a2163abaa058721df3253d779e7921483bb1 (diff)
downloadnavit-svn-17a8019e360078561435b02e9160c4bf888893c7.tar.gz
Revert accidentially done changes
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit/src@144 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'vehicle.c')
-rw-r--r--vehicle.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/vehicle.c b/vehicle.c
index 4af5b9da..747ffffa 100644
--- a/vehicle.c
+++ b/vehicle.c
@@ -79,10 +79,10 @@ vehicle_pos_get(struct vehicle *this)
return &this->current_pos;
}
-double
+double *
vehicle_speed_get(struct vehicle *this)
{
- return this->speed;
+ return &this->speed;
}
double *
@@ -91,10 +91,10 @@ vehicle_dir_get(struct vehicle *this)
return &this->dir;
}
-double
+double *
vehicle_height_get(struct vehicle *this)
{
- return this->height;
+ return &this->height;
}
void