Skip to content

Commit 2617994

Browse files
committed
Fixes #126 - ios-sim showdevicetypes prints to stderr
1 parent 2e13341 commit 2617994

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/iPhoneSimulator.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ - (int) showDeviceTypes {
231231
SimDeviceSet* deviceSet = [simDeviceSet defaultSet];
232232
NSArray* devices = [deviceSet availableDevices];
233233
for (SimDevice* device in devices) {
234-
nsfprintf(stderr, @"%@, %@", device.deviceType.identifier, device.runtime.versionString);
234+
nsfprintf(stdout, @"%@, %@", device.deviceType.identifier, device.runtime.versionString);
235235
}
236236
}
237237

0 commit comments

Comments
 (0)