From 8e8bbe2f1f16e746dd91c81ff4b8744449b38f4c Mon Sep 17 00:00:00 2001 From: Christian Hohnstaedt Date: Wed, 25 Feb 2009 09:38:41 +0100 Subject: [PATCH] db.h: typo found by compiler --- lib/db.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/db.h b/lib/db.h index 90632554..46a1489f 100644 --- a/lib/db.h +++ b/lib/db.h @@ -32,7 +32,7 @@ enum pki_type { setting, }; -typedef struct db_header_t { +typedef struct { uint32_t magic; uint32_t len; /* length of this entry */ uint16_t headver; @@ -40,7 +40,7 @@ typedef struct db_header_t { uint16_t version; uint16_t flags; char name[NAMELEN]; /* name of the entry */ -}; +} db_header_t ; class db {