Minor whitespace fixes.
[pulseview.git] / pv / data / decode / annotation.cpp
index 9b07efbc5f2844724fb91cbcd1dc18149e8dce60..9a165803fe2381fa7d0d2a40459d1199b26cd1bf 100644 (file)
@@ -25,7 +25,7 @@ extern "C" {
 #include <cassert>
 #include <vector>
 
-#include "annotation.h"
+#include "annotation.hpp"
 
 namespace pv {
 namespace data {
@@ -43,7 +43,7 @@ Annotation::Annotation(const srd_proto_data *const pdata) :
        format_ = pda->ann_class;
 
        const char *const *annotations = (char**)pda->ann_text;
-       while(*annotations) {
+       while (*annotations) {
                annotations_.push_back(QString::fromUtf8(*annotations));
                annotations++;
        }