From d12d1f1b4a8a43d611e1c30b57f5bd66178a103a Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 26 Feb 2012 16:14:05 -0800 Subject: [PATCH] encoding-guesser: Remove spurious blank line. --- src/libpspp/encoding-guesser.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libpspp/encoding-guesser.c b/src/libpspp/encoding-guesser.c index 7d10015e2e..27e2cda5dc 100644 --- a/src/libpspp/encoding-guesser.c +++ b/src/libpspp/encoding-guesser.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2011 Free Software Foundation, Inc. + Copyright (C) 2011, 2012 Free Software Foundation, Inc. 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 @@ -88,7 +88,6 @@ static uint32_t get_le32 (const uint8_t *data) { return (data[3] << 24) | (data[2] << 16) | (data[1] << 8) | data[0]; - } static const char * -- 2.30.2