Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 336896
Collapse All | Expand All

(-)file_not_specified_in_diff (-10 / +8 lines)
Line 48 Link Here
48
inline static const char *welldefine(const char *s)  ATTRIBUTE_CONST;
49
Line 50 Link Here
50
welldefine(const char *s) ATTRIBUTE_CONST
52
welldefine(const char *s) 
51
--
Lines 52-54 Link Here
52
	if(s != NULL)
54
	static const char empty[] = {0};
53
		return s;
55
	return s ? s : empty;
54
	return emptystring;
55
--
Line 161 Link Here
162
			static const char empty[] = {0};
Lines 162-164 Link Here
162
			if(t < 0)
164
			
163
				return emptystring;
165
			return t < 0 ? empty : welldefine(argv[t]);
164
			return welldefine(argv[t]);
165
--

Return to bug 336896