summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2022-11-29 12:50:06 +0100
committerBastien Nocera <hadess@hadess.net>2022-11-30 10:54:50 +0100
commit2a8e53a93ed05884669c15be79750949ba8d7439 (patch)
tree5562c39546d9f29b3d755392091780f496bf5463
parentb10c9e9b1c9274cff700f0e39f658428e5866ac4 (diff)
downloadtotem-2a8e53a93ed05884669c15be79750949ba8d7439.tar.gz
backend: Add missing period at the end of error message
Add the missing period at the end of the Open GL error message.
-rw-r--r--src/backend/bacon-video-widget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/bacon-video-widget.c b/src/backend/bacon-video-widget.c
index 5acdebc6d..2cbd3543e 100644
--- a/src/backend/bacon-video-widget.c
+++ b/src/backend/bacon-video-widget.c
@@ -3349,7 +3349,7 @@ bvw_error_from_gst_error (BaconVideoWidget *bvw, GstMessage * err_msg)
is_error (e, RESOURCE, NOT_FOUND)) {
bvw->media_has_unsupported_video = TRUE;
ret = g_error_new_literal (BVW_ERROR, BVW_ERROR_GENERIC,
- _("Could not initialise OpenGL support"));
+ _("Could not initialise OpenGL support."));
set_current_actor (bvw);
goto done;
}