mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 04:20:27 +01:00
util: Added a few missing 'static' attributes for functions
This commit is contained in:
committed by
Carlos R. Mafra
parent
d517d5cac0
commit
549cefc47b
@@ -110,7 +110,7 @@ static Bool isFontOption(const char *option)
|
||||
* that qualifies the external references to be absolute, possibly
|
||||
* pending further expansion
|
||||
*/
|
||||
void hackPathInTexture(WMPropList * texture, const char *prefix)
|
||||
static void hackPathInTexture(WMPropList * texture, const char *prefix)
|
||||
{
|
||||
WMPropList *type;
|
||||
char *t;
|
||||
@@ -158,7 +158,7 @@ void hackPathInTexture(WMPropList * texture, const char *prefix)
|
||||
}
|
||||
}
|
||||
|
||||
void hackPaths(WMPropList * style, const char *prefix)
|
||||
static void hackPaths(WMPropList * style, const char *prefix)
|
||||
{
|
||||
WMPropList *keys;
|
||||
WMPropList *key;
|
||||
@@ -263,7 +263,7 @@ static WMPropList *getColor(WMPropList * texture)
|
||||
* IconTitleColor
|
||||
* IconTitleBack
|
||||
*/
|
||||
void hackStyle(WMPropList * style)
|
||||
static void hackStyle(WMPropList * style)
|
||||
{
|
||||
WMPropList *keys, *tmp;
|
||||
int foundIconTitle = 0, foundResizebarBack = 0;
|
||||
@@ -350,7 +350,7 @@ void hackStyle(WMPropList * style)
|
||||
}
|
||||
}
|
||||
|
||||
void print_help(int print_usage, int exitval)
|
||||
static void print_help(int print_usage, int exitval)
|
||||
{
|
||||
printf("Usage: %s [OPTIONS] FILE\n", __progname);
|
||||
if (print_usage) {
|
||||
|
||||
Reference in New Issue
Block a user