mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-23 16:11:41 +02:00
2021-06-01 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up compile warning in 'lib/rdcae.cpp'. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
6902630b1b
commit
a9648de976
@ -21756,3 +21756,5 @@
|
|||||||
2021-06-01 Fred Gleason <fredg@paravelsystems.com>
|
2021-06-01 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Removed the '${shlibs:Depends}' dependency from the
|
* Removed the '${shlibs:Depends}' dependency from the
|
||||||
'rivendell-webapi' DEB package.
|
'rivendell-webapi' DEB package.
|
||||||
|
2021-06-01 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Cleaned up compile warning in 'lib/rdcae.cpp'.
|
||||||
|
@ -493,7 +493,12 @@ void RDCae::clockData()
|
|||||||
|
|
||||||
void RDCae::SendCommand(QString cmd)
|
void RDCae::SendCommand(QString cmd)
|
||||||
{
|
{
|
||||||
write(cae_socket,cmd.toUtf8(),cmd.toUtf8().length());
|
int len=cmd.toUtf8().length();
|
||||||
|
int n=write(cae_socket,cmd.toUtf8(),cmd.toUtf8().length());
|
||||||
|
if(n!=len) {
|
||||||
|
rda->syslog(LOG_WARNING,"RDCae lost %d bytes when sending \"%s\"",
|
||||||
|
len-n,cmd.toUtf8().constData());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user