Update RaspiStill.c

Date and time of EXIF DateTime fields is now separated by a space instead of a colon, in accordance with EXIF 2.1.
This commit is contained in:
lgretton
2013-09-15 20:52:04 +01:00
parent 9ed215b005
commit b9604216c4

View File

@@ -1015,7 +1015,7 @@ static void add_exif_tags(RASPISTILL_STATE *state)
timeinfo = localtime(&rawtime);
snprintf(time_buf, sizeof(time_buf),
"%04d:%02d:%02d:%02d:%02d:%02d",
"%04d:%02d:%02d %02d:%02d:%02d",
timeinfo->tm_year+1900,
timeinfo->tm_mon+1,
timeinfo->tm_mday,