inst.c (find_point_vec): correct indentation

This commit is contained in:
Werner Almesberger 2015-01-07 19:45:59 -03:00
parent 1d7eccb06b
commit 8a1a310396
1 changed files with 3 additions and 3 deletions

6
inst.c
View File

@ -1,8 +1,8 @@
/*
* inst.c - Instance structures
*
* Written 2009-2012 by Werner Almesberger
* Copyright 2009-2012 by Werner Almesberger
* Written 2009-2012, 2015 by Werner Almesberger
* Copyright 2009-2012, 2015 by Werner Almesberger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -694,7 +694,7 @@ static struct inst *find_point_vec(struct inst *self, struct coord pos)
return inst;
for (vec = inst->vec; vec; vec = vec->base)
if (vec == self->vec)
return NULL;
return NULL;
return inst;
}