elm: Removed trailing whitespaces.

SVN revision: 61057
This commit is contained in:
Daniel Juyung Seo 2011-07-05 16:59:23 +00:00
parent f5d9c45f1b
commit 7061368326
2 changed files with 5 additions and 5 deletions

View File

@ -1609,7 +1609,7 @@ elm_cnp_tempfile_create(int size)
} }
eina_mmap_safety_enabled_set(EINA_TRUE); eina_mmap_safety_enabled_set(EINA_TRUE);
info->map = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, info->fd, 0); info->map = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, info->fd, 0);
if (info->map == MAP_FAILED) if (info->map == MAP_FAILED)
{ {

View File

@ -51,7 +51,7 @@
* output to the file specified by the file option (and then exit). If no * output to the file specified by the file option (and then exit). If no
* delay is given, the default is 0.5 seconds. If no file is given the * delay is given, the default is 0.5 seconds. If no file is given the
* default output file is "out.png". Repeat option is for continous * default output file is "out.png". Repeat option is for continous
* capturing screenshots. Repeat range is from 1 to 999 and * capturing screenshots. Repeat range is from 1 to 999 and
* filename is fixed to "out001.png" * filename is fixed to "out001.png"
* Some examples of using the shot engine: * Some examples of using the shot engine:
* *
@ -211,7 +211,7 @@ _shot_file_get(Elm_Win *win)
{ {
repname = malloc(sizeof(char)*(strlen(tmp) + 16)); repname = malloc(sizeof(char)*(strlen(tmp) + 16));
strncpy(repname, tmp, dotptr - tmp); strncpy(repname, tmp, dotptr - tmp);
sprintf(repname + (dotptr - tmp), "%03i", sprintf(repname + (dotptr - tmp), "%03i",
win->shot.shot_counter + 1); win->shot.shot_counter + 1);
strcat(repname, dotptr); strcat(repname, dotptr);
return repname; return repname;
@ -221,7 +221,7 @@ _shot_file_get(Elm_Win *win)
} }
free(tmp); free(tmp);
if (!win->shot.repeat_count) return strdup("out.png"); if (!win->shot.repeat_count) return strdup("out.png");
else else
{ {
repname = malloc(sizeof(char) * 24); repname = malloc(sizeof(char) * 24);
sprintf(repname, "out%03i.png", win->shot.shot_counter + 1); sprintf(repname, "out%03i.png", win->shot.shot_counter + 1);
@ -315,7 +315,7 @@ _shot_delay(void *data)
{ {
int remainshot = (win->shot.repeat_count - win->shot.shot_counter); int remainshot = (win->shot.repeat_count - win->shot.shot_counter);
if (remainshot > 0) return EINA_TRUE; if (remainshot > 0) return EINA_TRUE;
} }
win->shot.timer = NULL; win->shot.timer = NULL;
elm_exit(); elm_exit();
return EINA_FALSE; return EINA_FALSE;