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

(-)codeblocks-8.02/src/src/prefix.cpp (-2 / +4 lines)
Lines 389-395 br_strndup (char *str, size_t size) Link Here
389
char *
389
char *
390
br_extract_dir (const char *path)
390
br_extract_dir (const char *path)
391
{
391
{
392
	char *end, *result;
392
	const char *end;
393
	char *result;
393
394
394
	br_return_val_if_fail (path != (char *) NULL, (char *) NULL);
395
	br_return_val_if_fail (path != (char *) NULL, (char *) NULL);
395
396
Lines 424-430 br_extract_dir (const char *path) Link Here
424
char *
425
char *
425
br_extract_prefix (const char *path)
426
br_extract_prefix (const char *path)
426
{
427
{
427
	char *end, *tmp, *result;
428
	const char *end;
429
	char *tmp, *result;
428
430
429
	br_return_val_if_fail (path != (char *) NULL, (char *) NULL);
431
	br_return_val_if_fail (path != (char *) NULL, (char *) NULL);
430
432

Return to bug 274256