number_of_frames = ply_array_get_size (animation->frames);
if (number_of_frames == 0) {
- ply_trace ("%s directory had no files starting with %s\n",
+ ply_trace ("%s directory had no files starting with %s",
animation->image_dir, animation->frames_prefix);
goto out;
} else {
- ply_trace ("animation has %d frames\n", number_of_frames);
+ ply_trace ("animation has %d frames", number_of_frames);
}
load_finished = true;
RTLD_NODELETE | RTLD_NOW | RTLD_LOCAL);
if (handle == NULL) {
- ply_trace ("Could not load module \"%s\": %s\n", module_path, dlerror ());
+ ply_trace ("Could not load module \"%s\": %s", module_path, dlerror ());
if (errno == 0)
errno = ELIBACC;
}
static void
quit_splash (state_t *state)
{
- ply_trace ("quiting splash");
+ ply_trace ("quitting splash");
if (state->boot_splash != NULL) {
ply_trace ("freeing splash");
ply_boot_splash_free (state->boot_splash);
for (i = 0; i < connector->count_modes; i++)
if (connector->modes[i].type & DRM_MODE_TYPE_PREFERRED) {
- ply_trace ("Found preferred mode %dx%d at index %d\n",
+ ply_trace ("Found preferred mode %dx%d at index %d",
connector->modes[i].hdisplay,
connector->modes[i].vdisplay, i);
return &connector->modes[i];