~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/vdrive/vdrive-internal.c

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-03-31 00:37:15 UTC
  • mfrom: (1.1.7 upstream) (9.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090331003715-i5yisvcfv7mgz3eh
Tags: 2.1.dfsg-1
* New major upstream release (closes: #495937).
* Add desktop files (closes: #501181).

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
      case 11:
99
99
        return open_rawimage(unit, read_only);
100
100
      default:
101
 
        return open_fsimage(name, read_only);
102
 
 
 
101
        break;
103
102
    }
104
103
 
105
 
    return NULL;
 
104
    return open_fsimage(name, read_only);
106
105
}
107
106
 
108
107
static int close_fsimage(vdrive_t *vdrive)
137
136
      case 11:
138
137
        return close_rawimage(vdrive);
139
138
      default:
140
 
        return close_fsimage(vdrive);
 
139
        break;
141
140
    }
142
141
 
143
 
    return 0;
 
142
    return close_fsimage(vdrive);
144
143
}
145
144
 
146
145
static int vdrive_internal_format_disk_image(const char *filename,