summaryrefslogtreecommitdiffstats
path: root/konsole/konsole/TEmuVt102.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2013-10-19 18:25:48 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-10-19 19:17:07 +0200
commit2a5554c07cb144d1df794427863ce19bbfa59155 (patch)
tree33f964906b76059bb2f418d3ea9e6f25b248da8d /konsole/konsole/TEmuVt102.cpp
parenta7427e16eff4d367d894abc012de2e732911beb0 (diff)
downloadtdebase-2a5554c07cb144d1df794427863ce19bbfa59155.tar.gz
tdebase-2a5554c07cb144d1df794427863ce19bbfa59155.zip
Cleanup build warnings in konsole
Diffstat (limited to 'konsole/konsole/TEmuVt102.cpp')
-rw-r--r--konsole/konsole/TEmuVt102.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/konsole/konsole/TEmuVt102.cpp b/konsole/konsole/TEmuVt102.cpp
index 907e19b34..3f47afc1f 100644
--- a/konsole/konsole/TEmuVt102.cpp
+++ b/konsole/konsole/TEmuVt102.cpp
@@ -1262,7 +1262,7 @@ static void hexdump(int* s, int len)
void TEmuVt102::scan_buffer_report()
{
- if (ppos == 0 || ppos == 1 && (pbuf[0] & 0xff) >= 32) return;
+ if (ppos == 0 || (ppos == 1 && (pbuf[0] & 0xff) >= 32)) return;
printf("token: "); hexdump(pbuf,ppos); printf("\n");
}