Skip to content

Commit

Permalink
Fix attempting to copy an SDLEnum
Browse files Browse the repository at this point in the history
Fixes #80
  • Loading branch information
Joel Fischer committed Mar 25, 2015
1 parent e9af8e6 commit 76372fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SmartDeviceLink-iOS/SmartDeviceLink/SDLRPCRequestFactory.m
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ +(SDLPutFile*) buildPutFileWithFileName:(NSString*) syncFileName fileType:(SDLFi
SDLPutFile* msg = [[SDLPutFile alloc] init];
msg.syncFileName = syncFileName;

msg.fileType = [fileType mutableCopy];
msg.fileType = fileType;
msg.persistentFile = persistentFile;
msg.correlationID = correlationID;

Expand Down

0 comments on commit 76372fd

Please sign in to comment.