From b50756c7599cd98ba90abc1adac357a5d1ed5126 Mon Sep 17 00:00:00 2001 From: Baptiste Daroussin Date: Tue, 8 Sep 2015 19:25:15 +0000 Subject: [PATCH] Fix indentation, no functional changes --- usr.sbin/pkg/pkg.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/usr.sbin/pkg/pkg.c b/usr.sbin/pkg/pkg.c index e242638e0f8a..de7465befe42 100644 --- a/usr.sbin/pkg/pkg.c +++ b/usr.sbin/pkg/pkg.c @@ -66,15 +66,15 @@ struct sig_cert { }; typedef enum { - HASH_UNKNOWN, - HASH_SHA256, + HASH_UNKNOWN, + HASH_SHA256, } hash_t; struct fingerprint { - hash_t type; - char *name; - char hash[BUFSIZ]; - STAILQ_ENTRY(fingerprint) next; + hash_t type; + char *name; + char hash[BUFSIZ]; + STAILQ_ENTRY(fingerprint) next; }; STAILQ_HEAD(fingerprint_list, fingerprint);