~mir-team/ubuntu-app-launch/mir-release-0.14.0

« back to all changes in this revision

Viewing changes to tools/ubuntu-helper-stop.c

  • Committer: Ted Gould
  • Date: 2014-05-27 09:05:52 UTC
  • mfrom: (144.4.10 rename)
  • Revision ID: ted@gould.cx-20140527090552-0f00argr3u5l5gqc
Rename to Ubuntu App Launch

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *     Ted Gould <ted.gould@canonical.com>
18
18
 */
19
19
 
20
 
#include "libupstart-app-launch/upstart-app-launch.h"
 
20
#include "libubuntu-app-launch/ubuntu-app-launch.h"
21
21
#include <gio/gio.h>
22
22
 
23
23
int
32
32
 
33
33
        int retval = -1;
34
34
 
35
 
        if (upstart_app_launch_stop_helper(argv[1], argv[2])) {
 
35
        if (ubuntu_app_launch_stop_helper(argv[1], argv[2])) {
36
36
                retval = 0;
37
37
        } else {
38
38
                g_debug("Unable to stop app id '%s' of type '%s'", argv[2], argv[1]);