File gcc-43.diff of Package fuse_kio
--- fuse_kio/fuse_kio.cpp
+++ fuse_kio/fuse_kio.cpp
@@ -27,7 +27,7 @@ extern "C" {
#include <signal.h>
#include <sys/mount.h>
#include <stdlib.h>
-#include <iostream.h>
+#include <iostream>
#include "fuse_kio_ops.h"
#include "fuseapp.h"
@@ -168,7 +168,7 @@ int main(int argc, char *argv[])
if (fuse_fd<0)
{
- cout<<"fuse_mount() failed"<<endl;
+ std::cout<<"fuse_mount() failed"<<endl;
exit(-1);
}
@@ -176,7 +176,7 @@ int main(int argc, char *argv[])
fuse_handle = fuse_new(fuse_fd, 0, &ops);
if (fuse_handle==0)
{
- cout<<"fuse_new() failed"<<endl;
+ std::cout<<"fuse_new() failed"<<endl;
exit(-2);
}
--- fuse_kio/fuse_kio.cpp
+++ fuse_kio/fuse_kio.cpp
@@ -168,7 +168,7 @@ int main(int argc, char *argv[])
if (fuse_fd<0)
{
- std::cout<<"fuse_mount() failed"<<endl;
+ std::cout<<"fuse_mount() failed"<<std::endl;
exit(-1);
}
@@ -176,7 +176,7 @@ int main(int argc, char *argv[])
fuse_handle = fuse_new(fuse_fd, 0, &ops);
if (fuse_handle==0)
{
- std::cout<<"fuse_new() failed"<<endl;
+ std::cout<<"fuse_new() failed"<<std::endl;
exit(-2);
}