From: Andrey Rahmatullin <wrar@wrar.name>
Date: Mon, 2 Apr 2012 23:28:35 +0600
Subject: Fix alignment warning about progress_text by removing the redundant
 definition

userui_fbsplash.o link command yields "/usr/bin/ld: Warning: alignment 8 of
symbol `progress_text' in common.o is smaller than 16 in userui_fbsplash_core.o"
while progress_text should be defined only in common.c.

Bug: https://github.com/NigelCunningham/Tuxonice-Userui/issues/1
---
 fbsplash/userui_fbsplash_core.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/fbsplash/userui_fbsplash_core.c b/fbsplash/userui_fbsplash_core.c
index d1ff32d..2a4099b 100644
--- a/fbsplash/userui_fbsplash_core.c
+++ b/fbsplash/userui_fbsplash_core.c
@@ -29,7 +29,6 @@
 #include "../userui.h"
 
 int fb_fd, fbsplash_fd = -1, no_silent_image = 0;
-char *progress_text;
 static char rendermessage[512];
 static int lastloglevel;
 static unsigned long cur_value, cur_maximum, last_pos;
