summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/device.cc
authormickeyl <mickeyl>2004-06-01 14:14:38 (UTC)
committer mickeyl <mickeyl>2004-06-01 14:14:38 (UTC)
commit4438393d8eef624565e840b798429071829adea8 (patch) (side-by-side diff)
tree35bb6132f33b9aa1725d57158b4fd1967cfca1df /noncore/net/opietooth/lib/device.cc
parent27dfc34d411dee76f09f5e516c60b0a64eb35948 (diff)
downloadopie-4438393d8eef624565e840b798429071829adea8.zip
opie-4438393d8eef624565e840b798429071829adea8.tar.gz
opie-4438393d8eef624565e840b798429071829adea8.tar.bz2
fix typos
Diffstat (limited to 'noncore/net/opietooth/lib/device.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/device.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/net/opietooth/lib/device.cc b/noncore/net/opietooth/lib/device.cc
index f81066e..eea1178 100644
--- a/noncore/net/opietooth/lib/device.cc
+++ b/noncore/net/opietooth/lib/device.cc
@@ -63,25 +63,25 @@ void Device::attach(){
owarn << "Could not start" << oendl;
delete m_process;
m_process = 0;
}
};
}
void Device::detach(){
delete m_hci;
delete m_process;
// kill the pid we got
if(m_attached ){
//kill the pid
- warn << "killing" << oendl;
+ owarn << "killing" << oendl;
kill(pid, 9);
}
owarn << "detached" << oendl;
}
bool Device::isLoaded()const{
return m_attached;
}
QString Device::devName()const {
return QString::fromLatin1("hci0");
};
void Device::slotExited( OProcess* proc)
{