Skip to content

Commit 791844a

Browse files
committed
tab -> space x 2
1 parent eebf606 commit 791844a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/roslib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ ROSLIB.Service.prototype.callService = function(request, callback, failedCallbac
620620
this.ros.once(serviceCallId, function(message) {
621621
if (message.result !== undefined && message.result === false) {
622622
if (typeof failedCallback === 'function') {
623-
failedCallback();
623+
failedCallback();
624624
}
625625
} else {
626626
var response = new ROSLIB.ServiceResponse(message.values);

src/core/Service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ROSLIB.Service.prototype.callService = function(request, callback, failedCallbac
3333
this.ros.once(serviceCallId, function(message) {
3434
if (message.result !== undefined && message.result === false) {
3535
if (typeof failedCallback === 'function') {
36-
failedCallback();
36+
failedCallback();
3737
}
3838
} else {
3939
var response = new ROSLIB.ServiceResponse(message.values);

0 commit comments

Comments
 (0)