mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 04:30:37 -04:00
- Remove extra-patch in favour of USE_LIBTOOL - Remove two-line plist PR: ports/77563 Submitted by: Kay Lehmann (maintainer)
11 lines
357 B
C++
11 lines
357 B
C++
--- default_plugin/mdloader.cpp.orig Tue Feb 15 18:31:13 2005
|
|
+++ default_plugin/mdloader.cpp Tue Feb 15 18:31:41 2005
|
|
@@ -109,7 +109,7 @@
|
|
// Handle empty lines.
|
|
loc = tmp.find('=');
|
|
// empty line
|
|
- if (loc == string::npos)
|
|
+ if (loc == (unsigned int)string::npos)
|
|
continue;
|
|
|
|
// key == the name of the key.
|