Skip to content

Commit 7516d0b

Browse files
committed
Correct output position param
1 parent 0937617 commit 7516d0b

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/hyperion-aml/hyperion-aml.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ int main(int argc, char ** argv)
146146
QHostAddress hostAddress;
147147
if (!NetUtils::resolveHostToAddress(log, hostname, hostAddress, port))
148148
{
149-
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %2").arg(QSTRING_CSTR(hostAddress.toString())));
149+
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %1").arg(QSTRING_CSTR(hostAddress.toString())));
150150
return 1;
151151
}
152152
Info(log, "Connecting to Hyperion host: %s, port: %u", QSTRING_CSTR(hostAddress.toString()), port);

src/hyperion-dispmanx/hyperion-dispmanx.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ int main(int argc, char ** argv)
150150
QHostAddress hostAddress;
151151
if (!NetUtils::resolveHostToAddress(log, hostname, hostAddress, port))
152152
{
153-
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %2").arg(QSTRING_CSTR(hostAddress.toString())));
153+
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %1").arg(QSTRING_CSTR(hostAddress.toString())));
154154
return 1;
155155
}
156156
Info(log, "Connecting to Hyperion host: %s, port: %u", QSTRING_CSTR(hostAddress.toString()), port);

src/hyperion-framebuffer/hyperion-framebuffer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ int main(int argc, char ** argv)
150150
QHostAddress hostAddress;
151151
if (!NetUtils::resolveHostToAddress(log, hostname, hostAddress, port))
152152
{
153-
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %2").arg(QSTRING_CSTR(hostAddress.toString())));
153+
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %1").arg(QSTRING_CSTR(hostAddress.toString())));
154154
return 1;
155155
}
156156
Info(log, "Connecting to Hyperion host: %s, port: %u", QSTRING_CSTR(hostAddress.toString()), port);

src/hyperion-osx/hyperion-osx.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ int main(int argc, char ** argv)
150150
QHostAddress hostAddress;
151151
if (!NetUtils::resolveHostToAddress(log, hostname, hostAddress, port))
152152
{
153-
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %2").arg(QSTRING_CSTR(hostAddress.toString())));
153+
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %1").arg(QSTRING_CSTR(hostAddress.toString())));
154154
return 1;
155155
}
156156
Info(log, "Connecting to Hyperion host: %s, port: %u", QSTRING_CSTR(hostAddress.toString()), port);

src/hyperion-qt/hyperion-qt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ int main(int argc, char ** argv)
150150
QHostAddress hostAddress;
151151
if (!NetUtils::resolveHostToAddress(log, hostname, hostAddress, port))
152152
{
153-
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %2").arg(QSTRING_CSTR(hostAddress.toString())));
153+
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %1").arg(QSTRING_CSTR(hostAddress.toString())));
154154
return 1;
155155
}
156156
Info(log, "Connecting to Hyperion host: %s, port: %u", QSTRING_CSTR(hostAddress.toString()), port);

src/hyperion-v4l2/hyperion-v4l2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ int main(int argc, char** argv)
272272
QHostAddress hostAddress;
273273
if (!NetUtils::resolveHostToAddress(log, hostname, hostAddress, port))
274274
{
275-
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %2").arg(QSTRING_CSTR(hostAddress.toString())));
275+
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %1").arg(QSTRING_CSTR(hostAddress.toString())));
276276
return 1;
277277
}
278278
Info(log, "Connecting to Hyperion host: %s, port: %u", QSTRING_CSTR(hostAddress.toString()), port);

src/hyperion-x11/hyperion-x11.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ int main(int argc, char ** argv)
149149
QHostAddress hostAddress;
150150
if (!NetUtils::resolveHostToAddress(log, hostname, hostAddress, port))
151151
{
152-
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %2").arg(QSTRING_CSTR(hostAddress.toString())));
152+
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %1").arg(QSTRING_CSTR(hostAddress.toString())));
153153
return 1;
154154
}
155155
Info(log, "Connecting to Hyperion host: %s, port: %u", QSTRING_CSTR(hostAddress.toString()), port);

src/hyperion-xcb/hyperion-xcb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ int main(int argc, char ** argv)
149149
QHostAddress hostAddress;
150150
if (!NetUtils::resolveHostToAddress(log, hostname, hostAddress, port))
151151
{
152-
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %2").arg(QSTRING_CSTR(hostAddress.toString())));
152+
emit errorManager.errorOccurred(QString("Address could not be resolved for hostname: %1").arg(QSTRING_CSTR(hostAddress.toString())));
153153
return 1;
154154
}
155155
Info(log, "Connecting to Hyperion host: %s, port: %u", QSTRING_CSTR(hostAddress.toString()), port);

0 commit comments

Comments
 (0)