summaryrefslogtreecommitdiff
path: root/src/nav.c
diff options
context:
space:
mode:
authorp37sitdu, corvid <devnull@localhost>2013-01-12 20:13:36 +0000
committerp37sitdu, corvid <devnull@localhost>2013-01-12 20:13:36 +0000
commit0f0e7cc54aecab1647bdcd222c84d17275b92313 (patch)
tree225d4a6128cd2ddbc1f762b0355c986f12c13730 /src/nav.c
parent69666a2dafc8a00e5029f4b671ed94d5be38e109 (diff)
clean up struct typedefs
Diffstat (limited to 'src/nav.c')
-rw-r--r--src/nav.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nav.c b/src/nav.c
index 2e4f2233..4ccb28be 100644
--- a/src/nav.c
+++ b/src/nav.c
@@ -27,12 +27,10 @@
* For back and forward navigation, each bw keeps an url index,
* and its scroll position.
*/
-typedef struct _nav_stack_item nav_stack_item;
-struct _nav_stack_item
-{
+typedef struct {
int url_idx;
int posx, posy;
-};
+} nav_stack_item;