aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2021-09-11 02:08:06 -0700
committerGuy Harris <gharris@sonic.net>2021-09-11 10:01:27 +0000
commit76b08ea0832844c6afcda89f43aa122f7bfe5fe6 (patch)
tree3819ceab0596e3a7a3bd7222383f081181b14a0a /ui/qt
parentd4ed12972706b43ba73b5749ccb75f75ecc14a50 (diff)
Fix spelling errors.
The Ubuntu build commented on some spelling errors in executable code files. Fix the errors that don't come from external files containing the spelling errors (USB product and vendor IDs, PCI IDs, ASN.1 specifications), and fix some errors that don't show up in the executable code files (e.g., in comments and variable names).
Diffstat (limited to 'ui/qt')
-rw-r--r--ui/qt/utils/rtp_audio_file.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/qt/utils/rtp_audio_file.cpp b/ui/qt/utils/rtp_audio_file.cpp
index 4aa12b4c1a..591a63bbf3 100644
--- a/ui/qt/utils/rtp_audio_file.cpp
+++ b/ui/qt/utils/rtp_audio_file.cpp
@@ -181,7 +181,7 @@ bool RtpAudioFile::readFrameSamples(gint32 *read_buff_bytes, SAMPLE **read_buff,
guint64 read_bytes = 0;
if (!sample_file_frame_->read((char *)&frame_info, sizeof(frame_info))) {
- // Can't read frame, some error occured
+ // Can't read frame, some error occurred
return false;
}
@@ -255,7 +255,7 @@ bool RtpAudioFile::seek(qint64 off)
while (1) {
// Read frame
if (!sample_file_frame_->read((char *)&cur_frame_, sizeof(cur_frame_))) {
- // Can't read frame, some error occured
+ // Can't read frame, some error occurred
return false;
}