summaryrefslogtreecommitdiff
path: root/dselect/method.h
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2010-06-26 13:16:17 +0200
committerGuillem Jover <guillem@debian.org>2010-06-27 11:12:38 +0200
commitb8799d9f107b23d8640ae7db852499f399792083 (patch)
treee4cb9f6951a5f8de717b3d3948f43b15fd03c143 /dselect/method.h
parentc69901cdda6500450f026d02b439b941e7cb147a (diff)
downloaddpkg-b8799d9f107b23d8640ae7db852499f399792083.tar.gz
Use consistent naming for linked lists members
Use next/prev instead of next/back (which would complement forward). Also move next to the end of member names and seprate it with an underscore, to simulate it being a sub struct member.
Diffstat (limited to 'dselect/method.h')
-rw-r--r--dselect/method.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dselect/method.h b/dselect/method.h
index b85991cbe..6c6b895b9 100644
--- a/dselect/method.h
+++ b/dselect/method.h
@@ -37,7 +37,7 @@
#define OPTIONINDEXMAXLEN 5
struct method {
- struct method *next, *back;
+ struct method *next, *prev;
char *name, *path, *pathinmeth;
};