~ted/ubuntu-app-launch/snap-icon-unbreak

« back to all changes in this revision

Viewing changes to exec-line-exec.c

Updated to failure-is-an-option

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
        int execret = execvp(nargv[0], nargv);
130
130
 
131
131
        if (execret != 0) {
132
 
                g_warning("Unable to exec: %s", strerror(errno));
 
132
                g_warning("Unable to exec '%s': %s", app_exec, strerror(errno));
133
133
        }
134
134
 
135
135
        return execret;