1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-29 09:52:29 +01:00

util: Added a few missing 'static' attributes for functions

This commit is contained in:
Christophe CURIS
2013-05-12 00:24:53 +02:00
committed by Carlos R. Mafra
parent d517d5cac0
commit 549cefc47b
12 changed files with 34 additions and 34 deletions

View File

@@ -138,7 +138,7 @@ WMPropList *PixmapPath = NULL;
char *ThemePath = NULL;
void print_help(int print_usage, int exitval)
static void print_help(int print_usage, int exitval)
{
printf("Usage: %s [-t] [-p] [-h] [-v] [file]\n", __progname);
if (print_usage) {
@@ -165,7 +165,7 @@ static Bool isFontOption(const char *option)
return False;
}
void findCopyFile(const char *dir, const char *file)
static void findCopyFile(const char *dir, const char *file)
{
char *fullPath;
@@ -179,7 +179,7 @@ void findCopyFile(const char *dir, const char *file)
free(fullPath);
}
void makeThemePack(WMPropList * style, const char *themeName)
static void makeThemePack(WMPropList * style, const char *themeName)
{
WMPropList *keys;
WMPropList *key;