1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/audio/kmpg/files/patch-af
Chris Piazza b1e23d9d9b Fix boneheadedness. Such great programming practices
such as never including unistd.h and using close() on a FILE stream.
2000-01-24 01:16:32 +00:00

12 lines
395 B
Plaintext

--- lib/widgetlib/widgetbasic/examples/example6/videoPlayer.cpp.orig Sun Jan 23 17:00:48 2000
+++ lib/widgetlib/widgetbasic/examples/example6/videoPlayer.cpp Sun Jan 23 17:01:26 2000
@@ -96,7 +96,7 @@
str=strlist.first();
if (str != NULL) {
KURL url( str );
- char *path = url.path();
+ const char *path = url.path();
open(&url);
cout << "dropped:"<<path<<endl;
}