Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed a tabstop.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Dec 5, 2011
1 parent 8d767ea commit 530835f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/events/SDL_dropevents.c
Expand Up @@ -37,8 +37,7 @@ SDL_SendDropFile(const char *file)
if (SDL_GetEventState(SDL_DROPFILE) == SDL_ENABLE) {
SDL_Event event;
event.type = SDL_DROPFILE;
event.drop.file = SDL_strdup(file);

event.drop.file = SDL_strdup(file);
posted = (SDL_PushEvent(&event) > 0);
}
return (posted);
Expand Down

0 comments on commit 530835f

Please sign in to comment.